├── .gitignore ├── README.md ├── babel.config.js ├── docs ├── .gitignore ├── package.json ├── src │ ├── .vuepress │ │ ├── config.js │ │ ├── enhanceApp.js │ │ ├── public │ │ │ └── frontend-masters-logo.png │ │ └── styles │ │ │ ├── index.styl │ │ │ └── palette.styl │ ├── guide │ │ ├── components.md │ │ ├── core-principles.md │ │ ├── easy-to-follow-best-practices.md │ │ ├── final-thoughts.md │ │ ├── index.md │ │ ├── languages.md │ │ ├── reusability-and-composition.md │ │ ├── routing.md │ │ ├── state-management.md │ │ ├── testing.md │ │ └── vue-cli.md │ └── index.md └── yarn.lock ├── package.json ├── public ├── favicon.ico └── index.html ├── resources └── Production-Grade-Vue.pdf ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── CompositionCounter.vue │ ├── DynamicHeading.vue │ ├── HelloWorld.vue │ └── ManagingTernaryStyles.vue └── main.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/.vuepress/config.js -------------------------------------------------------------------------------- /docs/src/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /docs/src/.vuepress/public/frontend-masters-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/.vuepress/public/frontend-masters-logo.png -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/src/guide/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/components.md -------------------------------------------------------------------------------- /docs/src/guide/core-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/core-principles.md -------------------------------------------------------------------------------- /docs/src/guide/easy-to-follow-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/easy-to-follow-best-practices.md -------------------------------------------------------------------------------- /docs/src/guide/final-thoughts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/final-thoughts.md -------------------------------------------------------------------------------- /docs/src/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/index.md -------------------------------------------------------------------------------- /docs/src/guide/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/languages.md -------------------------------------------------------------------------------- /docs/src/guide/reusability-and-composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/reusability-and-composition.md -------------------------------------------------------------------------------- /docs/src/guide/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/routing.md -------------------------------------------------------------------------------- /docs/src/guide/state-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/state-management.md -------------------------------------------------------------------------------- /docs/src/guide/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/testing.md -------------------------------------------------------------------------------- /docs/src/guide/vue-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/guide/vue-cli.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/public/index.html -------------------------------------------------------------------------------- /resources/Production-Grade-Vue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/resources/Production-Grade-Vue.pdf -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/CompositionCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/components/CompositionCounter.vue -------------------------------------------------------------------------------- /src/components/DynamicHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/components/DynamicHeading.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/ManagingTernaryStyles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/components/ManagingTernaryStyles.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/src/main.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bencodezen/production-grade-vue/HEAD/yarn.lock --------------------------------------------------------------------------------