├── .gitignore ├── README.md ├── meta.json ├── package.json └── template ├── .babelrc ├── .gitignore ├── README.md ├── config ├── index.js └── webpack.js ├── nodemon.json ├── package.json ├── public └── favicon.ico ├── scripts ├── build.js └── start.js ├── src ├── app │ ├── assets │ │ ├── images │ │ │ └── logo.png │ │ └── styles │ │ │ └── scaffold.css │ ├── client-entry.js │ ├── components │ │ └── app.vue │ ├── index.js │ └── server-entry.js ├── index.js └── server │ ├── index.js │ └── middlewares │ └── app.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/README.md -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/meta.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | node_modules 4 | dist 5 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/config/webpack.js -------------------------------------------------------------------------------- /template/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/nodemon.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/package.json -------------------------------------------------------------------------------- /template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/public/favicon.ico -------------------------------------------------------------------------------- /template/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/scripts/build.js -------------------------------------------------------------------------------- /template/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/scripts/start.js -------------------------------------------------------------------------------- /template/src/app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/app/assets/images/logo.png -------------------------------------------------------------------------------- /template/src/app/assets/styles/scaffold.css: -------------------------------------------------------------------------------- 1 | body { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /template/src/app/client-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/app/client-entry.js -------------------------------------------------------------------------------- /template/src/app/components/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/app/components/app.vue -------------------------------------------------------------------------------- /template/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/app/index.js -------------------------------------------------------------------------------- /template/src/app/server-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/app/server-entry.js -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/server/index.js -------------------------------------------------------------------------------- /template/src/server/middlewares/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/src/server/middlewares/app.js -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpepermint/vue-cli-template/HEAD/template/yarn.lock --------------------------------------------------------------------------------