Repository: Neveryu/official-website Branch: master Commit: 4307b62f0401 Files: 28 Total size: 58.6 KB Directory structure: gitextract_t8uq2tzh/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── deploy.yml ├── .gitignore ├── .prettierrc ├── .vscode/ │ └── extensions.json ├── README.md ├── index.html ├── package.json ├── src/ │ ├── App.vue │ ├── common/ │ │ └── load-bmap.js │ ├── components/ │ │ ├── Footer.vue │ │ ├── GoTop.vue │ │ └── Header.vue │ ├── main.js │ ├── router/ │ │ └── index.js │ ├── style.css │ └── view/ │ ├── CompanyIntroduction.vue │ ├── ContactUs.vue │ ├── HomePage.vue │ ├── JobChance.vue │ ├── NewsInformation.vue │ ├── PageView.vue │ ├── Service.vue │ ├── ServiceDetail.vue │ ├── Software.vue │ ├── Software_bigData.vue │ └── Software_smartTown.vue └── vite.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # https://editorconfig.org root = true [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true quote_type = single [*.md] insert_final_newline = false trim_trailing_whitespace = false ================================================ FILE: .github/workflows/deploy.yml ================================================ # This is a basic workflow to help you get started with Actions name: deploy # Controls when the workflow will run on: # Triggers the workflow on push events but only for the master branch push: branches: [ master ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout master uses: actions/checkout@v3 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. with: ref: master persist-credentials: false - name: Setup node uses: actions/setup-node@v3 with: node-version: '16.x' - name: Install and Build run: yarn && yarn build - name: Deploy uses: JamesIves/github-pages-deploy-action@4.1.7 with: token: ${{ secrets.ACCESS_TOKEN }} single-commit: true branch: gh-pages clean: true folder: dist ================================================ FILE: .gitignore ================================================ # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* node_modules dist dist-ssr *.local # Editor directories and files .vscode/* !.vscode/extensions.json .idea .DS_Store *.suo *.ntvs* *.njsproj *.sln *.sw? package-lock.json ================================================ FILE: .prettierrc ================================================ { "semi": false, "singleQuote": true, "trailingComma": "none", "printWidth": 80, "endOfLine": "crlf", "overrides": [ { "files": ".prettierrc", "options": { "parser": "json" } } ] } ================================================ FILE: .vscode/extensions.json ================================================ { "recommendations": ["Vue.volar"] } ================================================ FILE: README.md ================================================ # Official-website > 响应式的企业官方网站模板,使用 [Vite](https://cn.vitejs.dev/) 脚手架搭建,使用 [Vue3](https://cn.vuejs.org/) 开发。 ## 运行/启动 ```bash npm i npm run dev ``` ## 构建&预览 ```bash # 构建生产环境 npm run build # 预览构建的产品 npm run preview ``` ## Vue 3 + Vite This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `