├── .gitignore ├── 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 │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package.json ├── package.swan.json ├── project.config.json ├── project.swan.json ├── src │ ├── App.vue │ ├── app.json │ ├── components │ │ └── card.vue │ ├── main.js │ ├── pages │ │ ├── counter │ │ │ ├── index.vue │ │ │ ├── main.js │ │ │ └── store.js │ │ ├── index │ │ │ ├── index.vue │ │ │ └── main.js │ │ └── logs │ │ │ ├── index.vue │ │ │ ├── main.js │ │ │ └── main.json │ └── utils │ │ └── index.js ├── static │ ├── .gitkeep │ ├── images │ │ └── user.png │ └── tabs │ │ ├── home-active.png │ │ ├── home.png │ │ ├── orders-active.png │ │ └── orders.png └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | docs/_book 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/circle.yml -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/backend.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/linter.md -------------------------------------------------------------------------------- /docs/pre-processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/pre-processors.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/static.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/docs/unit.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/.postcssrc.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/check-versions.js -------------------------------------------------------------------------------- /template/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/dev-client.js -------------------------------------------------------------------------------- /template/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/dev-server.js -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/vue-loader.conf.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/build/webpack.test.conf.js -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /template/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/config/test.env.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/package.json -------------------------------------------------------------------------------- /template/package.swan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/package.swan.json -------------------------------------------------------------------------------- /template/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/project.config.json -------------------------------------------------------------------------------- /template/project.swan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/project.swan.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/app.json -------------------------------------------------------------------------------- /template/src/components/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/components/card.vue -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/pages/counter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/counter/index.vue -------------------------------------------------------------------------------- /template/src/pages/counter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/counter/main.js -------------------------------------------------------------------------------- /template/src/pages/counter/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/counter/store.js -------------------------------------------------------------------------------- /template/src/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/index/index.vue -------------------------------------------------------------------------------- /template/src/pages/index/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/index/main.js -------------------------------------------------------------------------------- /template/src/pages/logs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/logs/index.vue -------------------------------------------------------------------------------- /template/src/pages/logs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/pages/logs/main.js -------------------------------------------------------------------------------- /template/src/pages/logs/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } 4 | -------------------------------------------------------------------------------- /template/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/src/utils/index.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/static/images/user.png -------------------------------------------------------------------------------- /template/static/tabs/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/static/tabs/home-active.png -------------------------------------------------------------------------------- /template/static/tabs/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/static/tabs/home.png -------------------------------------------------------------------------------- /template/static/tabs/orders-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/static/tabs/orders-active.png -------------------------------------------------------------------------------- /template/static/tabs/orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/static/tabs/orders.png -------------------------------------------------------------------------------- /template/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /template/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /template/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/e2e/runner.js -------------------------------------------------------------------------------- /template/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/e2e/specs/test.js -------------------------------------------------------------------------------- /template/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/unit/.eslintrc -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/template/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpvue/mpvue-quickstart/HEAD/test.sh --------------------------------------------------------------------------------