├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── cli.js ├── docs └── unit-test.md ├── package.json ├── sao.js ├── template ├── .editorconfig ├── README.md ├── gitignore ├── index.ejs ├── package.json ├── poi.config.js ├── src │ ├── components │ │ ├── App.test.js │ │ └── App.vue │ ├── index.js │ ├── polyfills.js │ └── pwa.js └── static │ ├── favicon.ico │ ├── icons │ ├── android-chrome-192x192.png │ └── android-chrome-512x512.png │ └── manifest.json ├── test ├── snapshots │ ├── test.js.md │ └── test.js.snap └── test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | packages/*/yarn.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/circle.yml -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/cli.js -------------------------------------------------------------------------------- /docs/unit-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/docs/unit-test.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/package.json -------------------------------------------------------------------------------- /sao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/sao.js -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/README.md -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/index.ejs -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/package.json -------------------------------------------------------------------------------- /template/poi.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/poi.config.js -------------------------------------------------------------------------------- /template/src/components/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/src/components/App.test.js -------------------------------------------------------------------------------- /template/src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/src/components/App.vue -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/src/polyfills.js -------------------------------------------------------------------------------- /template/src/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/src/pwa.js -------------------------------------------------------------------------------- /template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/static/favicon.ico -------------------------------------------------------------------------------- /template/static/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/static/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /template/static/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/static/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /template/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/template/static/manifest.json -------------------------------------------------------------------------------- /test/snapshots/test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/test/snapshots/test.js.md -------------------------------------------------------------------------------- /test/snapshots/test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/test/snapshots/test.js.snap -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/test/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-land/create-vue-app/HEAD/yarn.lock --------------------------------------------------------------------------------