├── Chapter01 ├── .DS_Store ├── 1.1 first-vue-project │ └── index.html ├── 1.2 first-app-with-nativescript-vue │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── app.gradle │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── iOS │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ ├── Default-Landscape.png │ │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ │ ├── Default-Portrait.png │ │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard.xml │ │ │ │ └── build.xcconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _DS_Store │ │ ├── app.css │ │ ├── app.js │ │ ├── images │ │ │ ├── apple.jpg │ │ │ └── vue.png │ │ └── package.json │ ├── hooks │ │ ├── after-prepare │ │ │ └── nativescript-dev-android-snapshot.js │ │ └── before-prepare │ │ │ └── nativescript-dev-android-snapshot.js │ ├── package-lock.json │ └── package.json └── 1.3 first-ssr │ ├── package-lock.json │ ├── package.json │ └── server.js ├── Chapter02 ├── 2.1 ts-vue-1 │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.ts │ ├── tsconfig.json │ └── webpack.config.js ├── 2.2 ts-vue-2 │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.ts │ ├── tsconfig.json │ └── webpack.config.js └── 2.3 vue-rxjs-adding-observable │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ └── main.js │ └── webpack.config.js ├── Chapter03 ├── 3.1 js-this │ ├── app.js │ └── index.html ├── 3.2 vue-proxy │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 3.3 data │ └── index.html ├── 3.4 computed │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 3.5 watched │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 3.6 vue-lifecycle │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js └── 3.7 dom │ ├── app.js │ └── index.html ├── Chapter04 ├── 4.1 vue-model │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.10 vue-conditionals-v-else-if │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.11 vue-filters │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── filters │ │ │ └── date │ │ │ │ └── date.filter.js │ │ └── main.js │ └── webpack.config.js ├── 4.2 vue-model-checkbox │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.3 vue-for │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.4 vue-bind-class │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.5 vue-on-1 │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.6 vue-on-2 │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.7 vue-conditionals-v-show │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 4.8 vue-conditionals-v-if │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js └── 4.9 vue-conditionals-v-else │ ├── README.md │ ├── _babelrc │ ├── _gitignore │ ├── index.html │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ └── main.js │ └── webpack.config.js ├── Chapter05 ├── 5.1 vue-component-1 │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── FancyButton.vue │ │ └── main.js │ └── webpack.config.js ├── 5.2 vue-component-2 │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── FancyButton.vue │ │ └── main.js │ └── webpack.config.js ├── 5.3 vue-component-props │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── FancyButton.vue │ │ └── main.js │ └── webpack.config.js ├── 5.4 vue-component-events │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── FancyButton.vue │ │ └── main.js │ └── webpack.config.js ├── 5.6 vue-event-bus │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── EventBus.js │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── ShoppingInput.vue │ │ │ └── ShoppingList.vue │ │ └── main.js │ └── webpack.config.js ├── 5.7 vue-slots │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── Message.vue │ │ └── main.js │ └── webpack.config.js └── 5.8 vue-slots-named │ ├── README.md │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── Message.vue │ └── main.js │ └── webpack.config.js ├── Chapter06 ├── 6.1 Chapter-6-Vue-CSS-Animations-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 6.2 Chapter-6-Vue-Animate-CSS-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js ├── 6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js └── 6.4 Chapter-6-Vue-Functional-Component-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── ListItem.vue │ └── main.js │ └── webpack.config.js ├── Chapter07 ├── 7.1 Chapter-7-Vue.js-Http-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── db.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ └── webpack.config.js └── 7.2 Chapter-7-Vue.js-Socketio-Chat-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── server │ ├── package-lock.json │ ├── package.json │ └── server.js │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── ConnectionStatus.vue │ │ ├── MessageForm.vue │ │ ├── MessageList.vue │ │ └── Navbar.vue │ └── main.js │ ├── styles.css │ └── webpack.config.js ├── Chapter08 ├── 8.1 Chapter-8-Vue-Lazy-Loading-Routes-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Hello.vue │ │ │ └── World.vue │ │ └── main.js │ └── webpack.config.js ├── 8.2 Chapter-8-Vue-Router-SPA-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── user │ │ │ │ ├── UserDetail.vue │ │ │ │ ├── UserList.vue │ │ │ │ ├── UserPosts.vue │ │ │ │ └── user.routes.js │ │ ├── main.js │ │ ├── router │ │ │ └── index.js │ │ └── utils │ │ │ └── api.js │ └── webpack.config.js └── 8.3 Chapter-8-Vue-Router-Basic-Example-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ └── main.js │ └── webpack.config.js ├── Chapter09 └── 9.1 Chapter-9-Vuex-Counter-Example-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── main.js │ └── store │ │ ├── index.js │ │ ├── modules │ │ └── count │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutation-types.js │ │ │ └── mutations.js │ │ └── mutation-types.js │ └── webpack.config.js ├── Chapter10 └── 10.1 Chapter-10-Vue-Testing-with-Jest-master │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── TodoInput.vue │ │ ├── TodoItem.vue │ │ ├── TodoList.vue │ │ └── __test__ │ │ │ ├── TodoInput.spec.js │ │ │ ├── TodoItem.spec.js │ │ │ └── TodoList.spec.js │ ├── main.js │ └── router │ │ └── index.js │ ├── wallaby.js │ └── webpack.config.js ├── Chapter11 └── 11.1 Chapter-11-Vue-PWA-master │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .firebaserc │ ├── .gitignore │ ├── .postcssrc.js │ ├── .travis.yml │ ├── 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 │ ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js │ ├── firebase.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Hello.vue │ │ └── __tests__ │ │ │ └── Hello.spec.js │ ├── 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 ├── Chapter12 └── 12.1 Chapter-12-Vue-Nuxt-master │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── assets │ └── transition.css │ ├── components │ ├── Category.vue │ ├── NavigationBar.vue │ ├── README.md │ └── Recipe.vue │ ├── db.json │ ├── layouts │ ├── README.md │ ├── default.vue │ └── error.vue │ ├── middleware │ └── README.md │ ├── nuxt.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ ├── Categories │ │ └── _id.vue │ ├── README.md │ ├── Recipes │ │ ├── _id.vue │ │ └── new.vue │ └── index.vue │ ├── plugins │ ├── README.md │ └── Vuelidate.js │ ├── static │ ├── README.md │ └── favicon.ico │ └── store │ └── README.md ├── Chapter13 ├── 13.1 vue-parent-child-anti │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── TodoItem.vue │ │ │ └── TodoList.vue │ │ └── main.js │ └── webpack.config.js ├── 13.2 vue-template-expressions │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── DogContainer.vue │ │ │ └── DogPresentational.vue │ │ └── main.js │ └── webpack.config.js └── 13.3 vue-test-with-jest │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Groceries.vue │ │ ├── Person.vue │ │ ├── Recipe.vue │ │ └── RecipeList.vue │ └── main.js │ ├── styles.css │ └── webpack.config.js ├── LICENSE └── README.md /Chapter01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/.DS_Store -------------------------------------------------------------------------------- /Chapter01/1.1 first-vue-project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.1 first-vue-project/index.html -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/LaunchScreen.storyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/LaunchScreen.storyboard.xml -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/LICENSE -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/README.md -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/_DS_Store -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/app.css -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/app.js -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/images/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/images/apple.jpg -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/images/vue.png -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/app/package.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/hooks/after-prepare/nativescript-dev-android-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/hooks/after-prepare/nativescript-dev-android-snapshot.js -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/hooks/before-prepare/nativescript-dev-android-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/hooks/before-prepare/nativescript-dev-android-snapshot.js -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/package-lock.json -------------------------------------------------------------------------------- /Chapter01/1.2 first-app-with-nativescript-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.2 first-app-with-nativescript-vue/package.json -------------------------------------------------------------------------------- /Chapter01/1.3 first-ssr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.3 first-ssr/package-lock.json -------------------------------------------------------------------------------- /Chapter01/1.3 first-ssr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.3 first-ssr/package.json -------------------------------------------------------------------------------- /Chapter01/1.3 first-ssr/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter01/1.3 first-ssr/server.js -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/README.md -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/index.html -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/package-lock.json -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/package.json -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/src/App.vue -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/src/main.ts -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/2.1 ts-vue-1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.1 ts-vue-1/webpack.config.js -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/README.md -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/index.html -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/package-lock.json -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/package.json -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/src/App.vue -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/src/main.ts -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/tsconfig.json -------------------------------------------------------------------------------- /Chapter02/2.2 ts-vue-2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.2 ts-vue-2/webpack.config.js -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/README.md -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/_babelrc -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/_gitignore -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/index.html -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/package-lock.json -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/package.json -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/src/App.vue -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/src/main.js -------------------------------------------------------------------------------- /Chapter02/2.3 vue-rxjs-adding-observable/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter02/2.3 vue-rxjs-adding-observable/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/3.1 js-this/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.1 js-this/app.js -------------------------------------------------------------------------------- /Chapter03/3.1 js-this/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.1 js-this/index.html -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/README.md -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/_babelrc -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/_gitignore -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/index.html -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/package-lock.json -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/package.json -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/src/App.vue -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/src/main.js -------------------------------------------------------------------------------- /Chapter03/3.2 vue-proxy/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.2 vue-proxy/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/3.3 data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.3 data/index.html -------------------------------------------------------------------------------- /Chapter03/3.4 computed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/README.md -------------------------------------------------------------------------------- /Chapter03/3.4 computed/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/_babelrc -------------------------------------------------------------------------------- /Chapter03/3.4 computed/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/_gitignore -------------------------------------------------------------------------------- /Chapter03/3.4 computed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/index.html -------------------------------------------------------------------------------- /Chapter03/3.4 computed/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/package-lock.json -------------------------------------------------------------------------------- /Chapter03/3.4 computed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/package.json -------------------------------------------------------------------------------- /Chapter03/3.4 computed/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/src/App.vue -------------------------------------------------------------------------------- /Chapter03/3.4 computed/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter03/3.4 computed/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/src/main.js -------------------------------------------------------------------------------- /Chapter03/3.4 computed/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.4 computed/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/3.5 watched/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/README.md -------------------------------------------------------------------------------- /Chapter03/3.5 watched/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/_babelrc -------------------------------------------------------------------------------- /Chapter03/3.5 watched/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/_gitignore -------------------------------------------------------------------------------- /Chapter03/3.5 watched/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/index.html -------------------------------------------------------------------------------- /Chapter03/3.5 watched/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/package-lock.json -------------------------------------------------------------------------------- /Chapter03/3.5 watched/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/package.json -------------------------------------------------------------------------------- /Chapter03/3.5 watched/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/src/App.vue -------------------------------------------------------------------------------- /Chapter03/3.5 watched/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter03/3.5 watched/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/src/main.js -------------------------------------------------------------------------------- /Chapter03/3.5 watched/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.5 watched/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/README.md -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/_babelrc -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/_gitignore -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/index.html -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/package-lock.json -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/package.json -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/src/App.vue -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/src/main.js -------------------------------------------------------------------------------- /Chapter03/3.6 vue-lifecycle/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.6 vue-lifecycle/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/3.7 dom/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.7 dom/app.js -------------------------------------------------------------------------------- /Chapter03/3.7 dom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter03/3.7 dom/index.html -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/README.md -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/_editorconfig -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/index.html -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/package.json -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.1 vue-model/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.1 vue-model/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/README.md -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/index.html -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/package.json -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.10 vue-conditionals-v-else-if/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.10 vue-conditionals-v-else-if/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/README.md -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/_editorconfig -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/index.html -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/package.json -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/src/filters/date/date.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/src/filters/date/date.filter.js -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.11 vue-filters/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.11 vue-filters/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/README.md -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/_editorconfig -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/index.html -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/package.json -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.2 vue-model-checkbox/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.2 vue-model-checkbox/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/.babelrc -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/.editorconfig -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/.gitignore -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/README.md -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/index.html -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/package.json -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.3 vue-for/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.3 vue-for/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/README.md -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/_editorconfig -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/index.html -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/package.json -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.4 vue-bind-class/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.4 vue-bind-class/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/README.md -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/index.html -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/package.json -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.5 vue-on-1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.5 vue-on-1/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/README.md -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/index.html -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/package.json -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.6 vue-on-2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.6 vue-on-2/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/README.md -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/index.html -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/package.json -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.7 vue-conditionals-v-show/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.7 vue-conditionals-v-show/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/README.md -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/index.html -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/package-lock.json -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/package.json -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.8 vue-conditionals-v-if/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.8 vue-conditionals-v-if/webpack.config.js -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/README.md -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/_babelrc -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/_gitignore -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/index.html -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/package.json -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/src/App.vue -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/src/main.js -------------------------------------------------------------------------------- /Chapter04/4.9 vue-conditionals-v-else/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter04/4.9 vue-conditionals-v-else/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/README.md -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/index.html -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/package.json -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/src/components/FancyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/src/components/FancyButton.vue -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.1 vue-component-1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.1 vue-component-1/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/README.md -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/index.html -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/package.json -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/src/components/FancyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/src/components/FancyButton.vue -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.2 vue-component-2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.2 vue-component-2/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/README.md -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/index.html -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/package.json -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/src/components/FancyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/src/components/FancyButton.vue -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.3 vue-component-props/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.3 vue-component-props/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/README.md -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/index.html -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/package.json -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/src/components/FancyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/src/components/FancyButton.vue -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.4 vue-component-events/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.4 vue-component-events/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/README.md -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/index.html -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/package.json -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/EventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/EventBus.js -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/components/ShoppingInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/components/ShoppingInput.vue -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/components/ShoppingList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/components/ShoppingList.vue -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.6 vue-event-bus/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.6 vue-event-bus/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/README.md -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/index.html -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/package.json -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/src/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/src/components/Message.vue -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.7 vue-slots/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.7 vue-slots/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/README.md -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/_babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/_babelrc -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/_editorconfig -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/_gitignore -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/index.html -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/package-lock.json -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/package.json -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/src/App.vue -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/src/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/src/components/Message.vue -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/src/main.js -------------------------------------------------------------------------------- /Chapter05/5.8 vue-slots-named/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter05/5.8 vue-slots-named/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.babelrc -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.editorconfig -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/.gitignore -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/README.md -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/index.html -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/package-lock.json -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/package.json -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/App.vue -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/src/main.js -------------------------------------------------------------------------------- /Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.1 Chapter-6-Vue-CSS-Animations-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.babelrc -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.editorconfig -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/.gitignore -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/README.md -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/index.html -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/package-lock.json -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/package.json -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/App.vue -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/src/main.js -------------------------------------------------------------------------------- /Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.2 Chapter-6-Vue-Animate-CSS-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.babelrc -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.editorconfig -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/.gitignore -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/README.md -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/index.html -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/package-lock.json -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/package.json -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/App.vue -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/src/main.js -------------------------------------------------------------------------------- /Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.3 Chapter-6-Vue-Form-Validation-Vuelidate-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.babelrc -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.editorconfig -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/.gitignore -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/README.md -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/index.html -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/package-lock.json -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/package.json -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/App.vue -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/components/ListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/components/ListItem.vue -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/src/main.js -------------------------------------------------------------------------------- /Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter06/6.4 Chapter-6-Vue-Functional-Component-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/.babelrc -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/.editorconfig -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/.gitignore -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/LICENSE -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/README.md -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/db.json -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/index.html -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/package-lock.json -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/package.json -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/App.vue -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/src/main.js -------------------------------------------------------------------------------- /Chapter07/7.1 Chapter-7-Vue.js-Http-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.1 Chapter-7-Vue.js-Http-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.babelrc -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.editorconfig -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/.gitignore -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/README.md -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/index.html -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/package-lock.json -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/package.json -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/package-lock.json -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/package.json -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/server/server.js -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/App.vue -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/ConnectionStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/ConnectionStatus.vue -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/MessageForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/MessageForm.vue -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/MessageList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/MessageList.vue -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/components/Navbar.vue -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/src/main.js -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/styles.css -------------------------------------------------------------------------------- /Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter07/7.2 Chapter-7-Vue.js-Socketio-Chat-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.babelrc -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.editorconfig -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/.gitignore -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/README.md -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/index.html -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/package-lock.json -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/package.json -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/App.vue -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/components/Hello.vue -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/components/World.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/components/World.vue -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/src/main.js -------------------------------------------------------------------------------- /Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.1 Chapter-8-Vue-Lazy-Loading-Routes-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.babelrc -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.editorconfig -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/.gitignore -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/README.md -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/index.html -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/package-lock.json -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/package.json -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/App.vue -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserDetail.vue -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserList.vue -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserPosts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/UserPosts.vue -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/components/user/user.routes.js -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/main.js -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/router/index.js -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/src/utils/api.js -------------------------------------------------------------------------------- /Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.2 Chapter-8-Vue-Router-SPA-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.babelrc -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.editorconfig -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/.gitignore -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/README.md -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/index.html -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/package-lock.json -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/package.json -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/App.vue -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/src/main.js -------------------------------------------------------------------------------- /Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter08/8.3 Chapter-8-Vue-Router-Basic-Example-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.babelrc -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.editorconfig -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/.gitignore -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/README.md -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/index.html -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/package-lock.json -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/package.json -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/App.vue -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/main.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/index.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/actions.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/getters.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/index.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/mutation-types.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/modules/count/mutations.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/src/store/mutation-types.js -------------------------------------------------------------------------------- /Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter09/9.1 Chapter-9-Vuex-Counter-Example-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.babelrc -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.editorconfig -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/.gitignore -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/README.md -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/index.html -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/package-lock.json -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/package.json -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/App.vue -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoInput.vue -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoItem.vue -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/TodoList.vue -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoInput.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoInput.spec.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoItem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoItem.spec.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/components/__test__/TodoList.spec.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/main.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/src/router/index.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/wallaby.js -------------------------------------------------------------------------------- /Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter10/10.1 Chapter-10-Vue-Testing-with-Jest-master/webpack.config.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.babelrc -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.editorconfig -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.eslintignore -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.eslintrc.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.firebaserc -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.gitignore -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.postcssrc.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/.travis.yml -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/README.md -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/build.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/check-versions.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/dev-client.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/dev-server.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/load-minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/load-minified.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/service-worker-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/service-worker-dev.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/service-worker-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/service-worker-prod.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/utils.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/vue-loader.conf.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.base.conf.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/config/dev.env.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/config/index.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/firebase.json -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/index.html -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/package-lock.json -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/package.json -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/App.vue -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/components/Hello.vue -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/components/__tests__/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/components/__tests__/Hello.spec.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/main.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/src/router/index.js -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/favicon.ico -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /Chapter11/11.1 Chapter-11-Vue-PWA-master/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter11/11.1 Chapter-11-Vue-PWA-master/static/manifest.json -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.editorconfig -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.eslintrc.js -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/.gitignore -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/assets/transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/assets/transition.css -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/Category.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/Category.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/NavigationBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/NavigationBar.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/Recipe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/components/Recipe.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/db.json -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/default.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/layouts/error.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/middleware/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/nuxt.config.js -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/package-lock.json -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/package.json -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/Categories/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/Categories/_id.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/Recipes/_id.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/Recipes/new.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/Recipes/new.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/pages/index.vue -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/plugins/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/plugins/Vuelidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/plugins/Vuelidate.js -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/static/README.md -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/static/favicon.ico -------------------------------------------------------------------------------- /Chapter12/12.1 Chapter-12-Vue-Nuxt-master/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter12/12.1 Chapter-12-Vue-Nuxt-master/store/README.md -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/.babelrc -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/.editorconfig -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/.gitignore -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/README.md -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/index.html -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/package-lock.json -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/package.json -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/src/App.vue -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/src/components/TodoItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/src/components/TodoItem.vue -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/src/components/TodoList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/src/components/TodoList.vue -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/src/main.js -------------------------------------------------------------------------------- /Chapter13/13.1 vue-parent-child-anti/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.1 vue-parent-child-anti/webpack.config.js -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/.babelrc -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/.editorconfig -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/.gitignore -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/README.md -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/index.html -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/package-lock.json -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/package.json -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/src/App.vue -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/src/components/DogContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/src/components/DogContainer.vue -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/src/components/DogPresentational.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/src/components/DogPresentational.vue -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/src/main.js -------------------------------------------------------------------------------- /Chapter13/13.2 vue-template-expressions/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.2 vue-template-expressions/webpack.config.js -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/README.md -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/index.html -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/package-lock.json -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/package.json -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/App.vue -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/assets/logo.png -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/components/Groceries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/components/Groceries.vue -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/components/Person.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/components/Person.vue -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/components/Recipe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/components/Recipe.vue -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/components/RecipeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/components/RecipeList.vue -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/src/main.js -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/styles.css -------------------------------------------------------------------------------- /Chapter13/13.3 vue-test-with-jest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/Chapter13/13.3 vue-test-with-jest/webpack.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-Design-Patterns-and-Best-Practices/HEAD/README.md --------------------------------------------------------------------------------