# vue-multipage **Repository Path**: github-9819409/vue-multipage ## Basic Information - **Project Name**: vue-multipage - **Description**: 基于vue的多页面结构 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-06-06 - **Last Updated**: 2022-06-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-multipage 平时对于多页开发的需求挺多的,一直都是用自己写的另一套脚手架,最近发现vue-cli已经有支持多页开发的配置了,于是整了一套vue的多页项目配置。 ## Project setup ``` npm run install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ### 项目结构 ``` md vue-multipage │ .gitignore │ babel.config.js │ filedir.md │ filedir.txt │ package.json │ README.md │ vue.config.js │ yarn.lock ├─build │ util.js ├─public └─src ├─assets │ ├─components └─pages ├─index │ │ index.html │ │ index.js │ │ index.vue │ └─components │ footer.vue └─page1 │ page1.html │ page1.js │ page1.vue └─components footer.vue ```