├── .gitignore ├── LICENCE ├── README.md ├── circle.yml ├── deploy-docs.sh ├── docs ├── README.md ├── SUMMARY.md ├── babel.md ├── backend.md ├── commands.md ├── e2e.md ├── env.md ├── linter.md ├── pre-processors.md ├── prerender.md ├── prevent_caching.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 │ ├── load-minified.js │ ├── service-worker-dev.js │ ├── service-worker-prod.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 ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── Hello.vue │ ├── main.js │ └── router │ │ └── index.js ├── static │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── msapplication-icon-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ └── safari-pinned-tab.svg │ └── manifest.json └── 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 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/circle.yml -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/babel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/babel.md -------------------------------------------------------------------------------- /docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/backend.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/linter.md -------------------------------------------------------------------------------- /docs/pre-processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/pre-processors.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/prevent_caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/prevent_caching.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/static.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/docs/unit.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/.postcssrc.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/check-versions.js -------------------------------------------------------------------------------- /template/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/dev-client.js -------------------------------------------------------------------------------- /template/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/dev-server.js -------------------------------------------------------------------------------- /template/build/load-minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/load-minified.js -------------------------------------------------------------------------------- /template/build/service-worker-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/service-worker-dev.js -------------------------------------------------------------------------------- /template/build/service-worker-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/service-worker-prod.js -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/vue-loader.conf.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/build/webpack.test.conf.js -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/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/vuejs-templates/pwa/HEAD/template/config/test.env.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/src/assets/logo.png -------------------------------------------------------------------------------- /template/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/src/components/Hello.vue -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/src/router/index.js -------------------------------------------------------------------------------- /template/static/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /template/static/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /template/static/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /template/static/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /template/static/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /template/static/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/favicon.ico -------------------------------------------------------------------------------- /template/static/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /template/static/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /template/static/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /template/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/static/manifest.json -------------------------------------------------------------------------------- /template/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /template/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /template/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/e2e/runner.js -------------------------------------------------------------------------------- /template/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/e2e/specs/test.js -------------------------------------------------------------------------------- /template/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/unit/.eslintrc -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/template/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs-templates/pwa/HEAD/test.sh --------------------------------------------------------------------------------