├── .gitignore ├── .idea ├── misc.xml ├── modules.xml └── mpvue-cli.iml ├── README.md ├── circle.yml ├── deploy-docs.sh ├── docs ├── README.md ├── SUMMARY.md ├── backend.md ├── commands.md ├── e2e.md ├── env.md ├── linter.md ├── pre-processors.md ├── prerender.md ├── proxy.md ├── static.md ├── structure.md └── unit.md ├── meta.js ├── package.json ├── template ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js ├── index.html ├── package-lock.json ├── package.json ├── project.config.json ├── src │ ├── App.vue │ ├── app.js │ ├── components │ │ └── card.vue │ ├── main.js │ ├── pages │ │ ├── counter │ │ │ └── index.vue │ │ ├── index │ │ │ └── index.vue │ │ └── logs │ │ │ └── index.vue │ ├── plugins │ │ ├── index.js │ │ └── utils │ │ │ └── validator.js │ ├── router │ │ ├── index.js │ │ └── modules │ │ │ └── router.js │ ├── store │ │ ├── flyio │ │ │ ├── apiUrl │ │ │ │ ├── home.js │ │ │ │ └── index.js │ │ │ ├── config.js │ │ │ ├── interceptors.js │ │ │ └── request.js │ │ ├── index.js │ │ └── modules │ │ │ └── counter.js │ └── template.js ├── static │ └── .gitkeep └── yarn.lock └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | docs/_book 3 | node_modules 4 | test 5 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/mpvue-cli.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/.idea/mpvue-cli.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/circle.yml -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/backend.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/linter.md -------------------------------------------------------------------------------- /docs/pre-processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/pre-processors.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/static.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/docs/unit.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/.postcssrc.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/check-versions.js -------------------------------------------------------------------------------- /template/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/dev-client.js -------------------------------------------------------------------------------- /template/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/dev-server.js -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/vue-loader.conf.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/config/prod.env.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/package.json -------------------------------------------------------------------------------- /template/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/project.config.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/app.js -------------------------------------------------------------------------------- /template/src/components/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/components/card.vue -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/pages/counter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/pages/counter/index.vue -------------------------------------------------------------------------------- /template/src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/pages/index/index.vue -------------------------------------------------------------------------------- /template/src/pages/logs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/pages/logs/index.vue -------------------------------------------------------------------------------- /template/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/plugins/index.js -------------------------------------------------------------------------------- /template/src/plugins/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/plugins/utils/validator.js -------------------------------------------------------------------------------- /template/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/router/index.js -------------------------------------------------------------------------------- /template/src/router/modules/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/router/modules/router.js -------------------------------------------------------------------------------- /template/src/store/flyio/apiUrl/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/flyio/apiUrl/home.js -------------------------------------------------------------------------------- /template/src/store/flyio/apiUrl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/flyio/apiUrl/index.js -------------------------------------------------------------------------------- /template/src/store/flyio/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/flyio/config.js -------------------------------------------------------------------------------- /template/src/store/flyio/interceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/flyio/interceptors.js -------------------------------------------------------------------------------- /template/src/store/flyio/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/flyio/request.js -------------------------------------------------------------------------------- /template/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/index.js -------------------------------------------------------------------------------- /template/src/store/modules/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/store/modules/counter.js -------------------------------------------------------------------------------- /template/src/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/src/template.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/template/yarn.lock -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencer1994/mpvue-cli/HEAD/test.sh --------------------------------------------------------------------------------