├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── code.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── Appendix ├── chapter1 │ └── vue-pomodoro-with-cats │ │ ├── index.html │ │ └── script.js ├── chapter2 │ ├── chrome-app-pomodoro │ │ ├── README.md │ │ ├── assets │ │ │ ├── app.js │ │ │ ├── bootstrap.min.css │ │ │ └── vue.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── index.html │ │ ├── main.js │ │ ├── manifest.json │ │ └── script.js │ └── vue-custom-plugin │ │ ├── README.md │ │ ├── VueMathPlugin.js │ │ ├── index.html │ │ ├── main.js │ │ ├── package.json │ │ └── script.js └── chapter3 │ ├── shopping-list-single-file-components │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ └── ItemsComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js │ └── vue-shopping-list-simple-components │ ├── index.html │ └── script.js ├── License ├── README.md ├── chapter1 ├── .idea │ ├── .name │ ├── chapter1.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── html+css+js-shopping-list │ └── index.html ├── vue-pomodoro │ ├── index.html │ └── script.js └── vue-shopping-list │ ├── index.html │ └── script.js ├── chapter2 ├── apps │ └── shopping-list │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── Hello.vue │ │ └── main.js │ │ ├── static │ │ └── .gitkeep │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── different-install │ ├── bower │ │ ├── bower_components │ │ │ └── vue │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ ├── vue.common.js │ │ │ │ ├── vue.js │ │ │ │ ├── vue.min.js │ │ │ │ └── vue.min.js.map │ │ │ │ └── src │ │ │ │ ├── batcher.js │ │ │ │ ├── cache.js │ │ │ │ ├── compiler │ │ │ │ ├── compile-props.js │ │ │ │ ├── compile.js │ │ │ │ ├── index.js │ │ │ │ ├── resolve-slots.js │ │ │ │ └── transclude.js │ │ │ │ ├── config.js │ │ │ │ ├── directive.js │ │ │ │ ├── directives │ │ │ │ ├── element │ │ │ │ │ ├── index.js │ │ │ │ │ ├── partial.js │ │ │ │ │ └── slot.js │ │ │ │ ├── internal │ │ │ │ │ ├── class.js │ │ │ │ │ ├── component.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── prop.js │ │ │ │ │ ├── style.js │ │ │ │ │ └── transition.js │ │ │ │ ├── priorities.js │ │ │ │ └── public │ │ │ │ │ ├── bind.js │ │ │ │ │ ├── cloak.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── for.js │ │ │ │ │ ├── html.js │ │ │ │ │ ├── if.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── model │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ └── text.js │ │ │ │ │ ├── on.js │ │ │ │ │ ├── ref.js │ │ │ │ │ ├── show.js │ │ │ │ │ └── text.js │ │ │ │ ├── filters │ │ │ │ ├── array-filters.js │ │ │ │ └── index.js │ │ │ │ ├── fragment │ │ │ │ ├── factory.js │ │ │ │ └── fragment.js │ │ │ │ ├── global-api.js │ │ │ │ ├── index.js │ │ │ │ ├── instance │ │ │ │ ├── api │ │ │ │ │ ├── data.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── events.js │ │ │ │ │ └── lifecycle.js │ │ │ │ ├── internal │ │ │ │ │ ├── events.js │ │ │ │ │ ├── init.js │ │ │ │ │ ├── lifecycle.js │ │ │ │ │ ├── misc.js │ │ │ │ │ └── state.js │ │ │ │ └── vue.js │ │ │ │ ├── observer │ │ │ │ ├── array.js │ │ │ │ ├── dep.js │ │ │ │ └── index.js │ │ │ │ ├── parsers │ │ │ │ ├── directive.js │ │ │ │ ├── expression.js │ │ │ │ ├── path.js │ │ │ │ ├── template.js │ │ │ │ └── text.js │ │ │ │ ├── transition │ │ │ │ ├── index.js │ │ │ │ ├── queue.js │ │ │ │ └── transition.js │ │ │ │ ├── util │ │ │ │ ├── component.js │ │ │ │ ├── debug.js │ │ │ │ ├── dom.js │ │ │ │ ├── env.js │ │ │ │ ├── index.js │ │ │ │ ├── lang.js │ │ │ │ └── options.js │ │ │ │ └── watcher.js │ │ └── index.html │ ├── cdn │ │ └── index.html │ ├── dev-build │ │ ├── README.md │ │ ├── index.html │ │ ├── main.js │ │ ├── package.json │ │ └── script.js │ ├── npm │ │ ├── README.md │ │ ├── index.html │ │ ├── main.js │ │ ├── package.json │ │ └── script.js │ ├── scp-complient │ │ ├── README.md │ │ ├── assets │ │ │ ├── app.js │ │ │ └── vue.js │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── index.html │ │ ├── main.js │ │ └── manifest.json │ ├── standalone │ │ ├── index.html │ │ └── vue.js │ └── vue-cli │ │ ├── learning-vue │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build │ │ │ ├── build.js │ │ │ ├── dev-client.js │ │ │ ├── dev-server.js │ │ │ ├── utils.js │ │ │ ├── webpack.base.conf.js │ │ │ ├── webpack.dev.conf.js │ │ │ └── webpack.prod.conf.js │ │ ├── config │ │ │ ├── dev.env.js │ │ │ ├── index.js │ │ │ ├── prod.env.js │ │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── assets │ │ │ │ └── logo.png │ │ │ ├── components │ │ │ │ └── Hello.vue │ │ │ └── main.js │ │ ├── static │ │ │ └── .gitkeep │ │ └── test │ │ │ ├── e2e │ │ │ ├── custom-assertions │ │ │ │ └── elementCount.js │ │ │ ├── nightwatch.conf.js │ │ │ ├── runner.js │ │ │ └── specs │ │ │ │ └── test.js │ │ │ └── unit │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── karma.conf.js │ │ │ └── specs │ │ │ └── Hello.spec.js │ │ └── npm-debug.log ├── vue-component │ ├── index.html │ └── script.js ├── vue-custom-directive │ ├── index.html │ └── script.js └── vue-custom-plugin │ ├── README.md │ ├── VueMathPlugin.js │ ├── index.html │ ├── main.js │ ├── package.json │ └── script.js ├── chapter3 ├── hello │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── HelloComponent.vue │ │ └── main.js │ └── webpack.config.js ├── pomodoro-css-transitions │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ └── ItemsComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── vue-components │ └── index.html ├── vue-shopping-list-simple-components │ ├── index.html │ └── script.js └── vue-single-file-components │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .gitignore │ ├── README.md │ ├── build │ ├── build.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ ├── HelloComponent.vue │ └── main.js │ ├── static │ └── .gitkeep │ └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js ├── chapter4 ├── beer-time │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro4 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro5 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ └── ShoppingListComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ └── ShoppingListComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ └── ShoppingListComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js └── shopping-list4 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ ├── App.vue │ ├── components │ │ ├── AddItemComponent.vue │ │ ├── ChangeTitleComponent.vue │ │ ├── ItemComponent.vue │ │ ├── ItemsComponent.vue │ │ └── ShoppingListComponent.vue │ └── main.js │ ├── static │ └── .gitkeep │ └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js ├── chapter5 ├── npm-debug.log ├── pomodoro │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro4 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ └── main.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── simple-store │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ChangeGreetingsComponent.vue │ │ │ └── ShowGreetingsComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ └── store.js │ └── webpack.config.js ├── simple-store2 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── ChangeGreetingsComponent.vue │ │ │ └── ShowGreetingsComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── getters.js │ │ │ └── store.js │ └── webpack.config.js └── simple-store3 │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── ChangeGreetingsComponent.vue │ │ └── ShowGreetingsComponent.vue │ ├── main.js │ └── vuex │ │ ├── actions.js │ │ ├── getters.js │ │ ├── mutation_types.js │ │ └── store.js │ └── webpack.config.js ├── chapter6 ├── npm-debug.log ├── pomodoro │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ ├── plugins │ │ │ └── VueNoiseGeneratorPlugin.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ ├── plugins │ │ │ └── VueNoiseGeneratorPlugin.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── pomodoro3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ ├── plugins │ │ │ └── VueNoiseGeneratorPlugin.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── Hello.spec.js ├── shopping-list │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── server │ │ └── db.json │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ └── index.js │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ └── karma.conf.js └── shopping-list2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── server │ └── db.json │ ├── src │ ├── App.vue │ ├── api │ │ └── index.js │ ├── components │ │ ├── AddItemComponent.vue │ │ ├── ChangeTitleComponent.vue │ │ ├── ItemComponent.vue │ │ ├── ItemsComponent.vue │ │ ├── ShoppingListComponent.vue │ │ └── ShoppingListTitleComponent.vue │ ├── main.js │ └── vuex │ │ ├── actions.js │ │ ├── getters.js │ │ ├── mutation_types.js │ │ ├── mutations.js │ │ └── store.js │ ├── static │ └── .gitkeep │ └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js ├── chapter7 ├── npm-debug.log ├── pomodoro │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── plugins │ │ └── VueNoiseGeneratorPlugin.js │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── vuex │ │ └── mutations.spec.js ├── pomodoro2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ ├── plugins │ │ │ └── VueNoiseGeneratorPlugin.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── vuex │ │ └── mutations.spec.js ├── pomodoro3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── ControlsComponent.vue │ │ │ ├── CountdownComponent.vue │ │ │ ├── KittensComponent.vue │ │ │ └── StateTitleComponent.vue │ │ ├── config.js │ │ ├── main.js │ │ ├── plugins │ │ │ └── VueNoiseGeneratorPlugin.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── vuex │ │ └── mutations.spec.js ├── shopping-list │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── server │ │ └── db.json │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ └── index.js │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ ├── components │ │ ├── AddItemComponent.spec.js │ │ └── AddItemComponent2.spec.js │ │ └── vuex │ │ ├── actions.spec.js │ │ ├── getters.spec.js │ │ └── mutations.spec.js ├── shopping-list2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── server │ │ └── db.json │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ └── index.js │ │ ├── components │ │ │ ├── AddItemComponent.vue │ │ │ ├── ChangeTitleComponent.vue │ │ │ ├── ItemComponent.vue │ │ │ ├── ItemsComponent.vue │ │ │ ├── ShoppingListComponent.vue │ │ │ └── ShoppingListTitleComponent.vue │ │ ├── main.js │ │ └── vuex │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── mutation_types.js │ │ │ ├── mutations.js │ │ │ └── store.js │ ├── static │ │ └── .gitkeep │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── vuex │ │ ├── actions.spec.js │ │ ├── getters.spec.js │ │ └── mutations.spec.js └── shopping-list3 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── server │ └── db.json │ ├── src │ ├── App.vue │ ├── api │ │ └── index.js │ ├── components │ │ ├── AddItemComponent.vue │ │ ├── ChangeTitleComponent.vue │ │ ├── ItemComponent.vue │ │ ├── ItemsComponent.vue │ │ ├── ShoppingListComponent.vue │ │ └── ShoppingListTitleComponent.vue │ ├── main.js │ └── vuex │ │ ├── actions.js │ │ ├── getters.js │ │ ├── mutation_types.js │ │ ├── mutations.js │ │ └── store.js │ ├── static │ └── .gitkeep │ └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ ├── components │ └── AddItemComponent.spec.js │ └── vuex │ ├── actions.spec.js │ ├── getters.spec.js │ └── mutations.spec.js └── chapter8 ├── pomodoro ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── components │ │ ├── ControlsComponent.vue │ │ ├── CountdownComponent.vue │ │ ├── KittensComponent.vue │ │ └── StateTitleComponent.vue │ ├── config.js │ ├── main.js │ ├── plugins │ │ └── VueNoiseGeneratorPlugin.js │ └── vuex │ │ ├── actions.js │ │ ├── getters.js │ │ ├── mutation_types.js │ │ ├── mutations.js │ │ └── store.js ├── static │ └── .gitkeep └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── vuex │ └── mutations.spec.js └── shopping-list ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── build ├── build.js ├── check-versions.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── index.html ├── package.json ├── server └── db.json ├── src ├── App.vue ├── api │ └── index.js ├── components │ ├── AddItemComponent.vue │ ├── ChangeTitleComponent.vue │ ├── ItemComponent.vue │ ├── ItemsComponent.vue │ ├── ShoppingListComponent.vue │ └── ShoppingListTitleComponent.vue ├── main.js └── vuex │ ├── actions.js │ ├── getters.js │ ├── mutation_types.js │ ├── mutations.js │ └── store.js ├── static └── .gitkeep └── test ├── e2e ├── custom-assertions │ └── elementCount.js ├── nightwatch.conf.js ├── runner.js └── specs │ └── test.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs ├── components └── AddItemComponent.spec.js └── vuex ├── actions.spec.js ├── getters.spec.js └── mutations.spec.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | code -------------------------------------------------------------------------------- /.idea/code.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.idea/code.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Appendix/chapter3/shopping-list-single-file-components/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Appendix/chapter3/shopping-list-single-file-components/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/README.md -------------------------------------------------------------------------------- /chapter1/.idea/.name: -------------------------------------------------------------------------------- 1 | chapter1 -------------------------------------------------------------------------------- /chapter1/.idea/chapter1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/.idea/chapter1.iml -------------------------------------------------------------------------------- /chapter1/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/.idea/encodings.xml -------------------------------------------------------------------------------- /chapter1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/.idea/misc.xml -------------------------------------------------------------------------------- /chapter1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/.idea/modules.xml -------------------------------------------------------------------------------- /chapter1/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/.idea/workspace.xml -------------------------------------------------------------------------------- /chapter1/vue-pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/vue-pomodoro/index.html -------------------------------------------------------------------------------- /chapter1/vue-pomodoro/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/vue-pomodoro/script.js -------------------------------------------------------------------------------- /chapter1/vue-shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/vue-shopping-list/index.html -------------------------------------------------------------------------------- /chapter1/vue-shopping-list/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter1/vue-shopping-list/script.js -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/README.md -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/index.html -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/package.json -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/apps/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter2/apps/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter2/different-install/cdn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/different-install/cdn/index.html -------------------------------------------------------------------------------- /chapter2/different-install/npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/different-install/npm/README.md -------------------------------------------------------------------------------- /chapter2/different-install/npm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/different-install/npm/index.html -------------------------------------------------------------------------------- /chapter2/different-install/npm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/different-install/npm/main.js -------------------------------------------------------------------------------- /chapter2/different-install/npm/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/different-install/npm/script.js -------------------------------------------------------------------------------- /chapter2/different-install/vue-cli/learning-vue/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter2/different-install/vue-cli/learning-vue/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter2/vue-component/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-component/index.html -------------------------------------------------------------------------------- /chapter2/vue-component/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-component/script.js -------------------------------------------------------------------------------- /chapter2/vue-custom-directive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-directive/index.html -------------------------------------------------------------------------------- /chapter2/vue-custom-directive/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-directive/script.js -------------------------------------------------------------------------------- /chapter2/vue-custom-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-plugin/README.md -------------------------------------------------------------------------------- /chapter2/vue-custom-plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-plugin/index.html -------------------------------------------------------------------------------- /chapter2/vue-custom-plugin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-plugin/main.js -------------------------------------------------------------------------------- /chapter2/vue-custom-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-plugin/package.json -------------------------------------------------------------------------------- /chapter2/vue-custom-plugin/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter2/vue-custom-plugin/script.js -------------------------------------------------------------------------------- /chapter3/hello/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/.babelrc -------------------------------------------------------------------------------- /chapter3/hello/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /chapter3/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/README.md -------------------------------------------------------------------------------- /chapter3/hello/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/index.html -------------------------------------------------------------------------------- /chapter3/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/package.json -------------------------------------------------------------------------------- /chapter3/hello/src/HelloComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/src/HelloComponent.vue -------------------------------------------------------------------------------- /chapter3/hello/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/src/main.js -------------------------------------------------------------------------------- /chapter3/hello/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/hello/webpack.config.js -------------------------------------------------------------------------------- /chapter3/pomodoro-css-transitions/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro-css-transitions/.babelrc -------------------------------------------------------------------------------- /chapter3/pomodoro-css-transitions/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter3/pomodoro-css-transitions/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter3/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter3/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter3/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter3/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter3/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter3/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/README.md -------------------------------------------------------------------------------- /chapter3/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter3/pomodoro/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/build/check-versions.js -------------------------------------------------------------------------------- /chapter3/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter3/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter3/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter3/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter3/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter3/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter3/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter3/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/index.html -------------------------------------------------------------------------------- /chapter3/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/package.json -------------------------------------------------------------------------------- /chapter3/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter3/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter3/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter3/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter3/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter3/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter3/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter3/pomodoro/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/pomodoro/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter3/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter3/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter3/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter3/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter3/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter3/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/README.md -------------------------------------------------------------------------------- /chapter3/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter3/shopping-list/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/build/dev-client.js -------------------------------------------------------------------------------- /chapter3/shopping-list/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/build/dev-server.js -------------------------------------------------------------------------------- /chapter3/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter3/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter3/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter3/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter3/shopping-list/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/config/test.env.js -------------------------------------------------------------------------------- /chapter3/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/index.html -------------------------------------------------------------------------------- /chapter3/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/package.json -------------------------------------------------------------------------------- /chapter3/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter3/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter3/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter3/shopping-list/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter3/shopping-list/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter3/shopping-list/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/shopping-list/test/unit/index.js -------------------------------------------------------------------------------- /chapter3/vue-components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter3/vue-components/index.html -------------------------------------------------------------------------------- /chapter3/vue-single-file-components/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter3/vue-single-file-components/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/beer-time/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/.babelrc -------------------------------------------------------------------------------- /chapter4/beer-time/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/.editorconfig -------------------------------------------------------------------------------- /chapter4/beer-time/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/.eslintignore -------------------------------------------------------------------------------- /chapter4/beer-time/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/beer-time/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/.gitignore -------------------------------------------------------------------------------- /chapter4/beer-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/README.md -------------------------------------------------------------------------------- /chapter4/beer-time/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/build/build.js -------------------------------------------------------------------------------- /chapter4/beer-time/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/build/check-versions.js -------------------------------------------------------------------------------- /chapter4/beer-time/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/beer-time/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/beer-time/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/build/utils.js -------------------------------------------------------------------------------- /chapter4/beer-time/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/beer-time/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/config/index.js -------------------------------------------------------------------------------- /chapter4/beer-time/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/beer-time/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/config/test.env.js -------------------------------------------------------------------------------- /chapter4/beer-time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/index.html -------------------------------------------------------------------------------- /chapter4/beer-time/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/package.json -------------------------------------------------------------------------------- /chapter4/beer-time/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/src/App.vue -------------------------------------------------------------------------------- /chapter4/beer-time/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/src/main.js -------------------------------------------------------------------------------- /chapter4/beer-time/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/beer-time/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/beer-time/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/beer-time/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/beer-time/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/beer-time/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/beer-time/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter4/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter4/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter4/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter4/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/README.md -------------------------------------------------------------------------------- /chapter4/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter4/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter4/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/index.html -------------------------------------------------------------------------------- /chapter4/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/package.json -------------------------------------------------------------------------------- /chapter4/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter4/pomodoro/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/src/assets/logo.png -------------------------------------------------------------------------------- /chapter4/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter4/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/.babelrc -------------------------------------------------------------------------------- /chapter4/pomodoro2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/.editorconfig -------------------------------------------------------------------------------- /chapter4/pomodoro2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/.eslintignore -------------------------------------------------------------------------------- /chapter4/pomodoro2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/.gitignore -------------------------------------------------------------------------------- /chapter4/pomodoro2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/README.md -------------------------------------------------------------------------------- /chapter4/pomodoro2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/build/build.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/build/check-versions.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/build/utils.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/config/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/pomodoro2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/config/test.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/index.html -------------------------------------------------------------------------------- /chapter4/pomodoro2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/package.json -------------------------------------------------------------------------------- /chapter4/pomodoro2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/src/App.vue -------------------------------------------------------------------------------- /chapter4/pomodoro2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/src/main.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/pomodoro2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/pomodoro2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro2/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro2/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/.babelrc -------------------------------------------------------------------------------- /chapter4/pomodoro3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/.editorconfig -------------------------------------------------------------------------------- /chapter4/pomodoro3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/.eslintignore -------------------------------------------------------------------------------- /chapter4/pomodoro3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/.gitignore -------------------------------------------------------------------------------- /chapter4/pomodoro3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/README.md -------------------------------------------------------------------------------- /chapter4/pomodoro3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/build/build.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/build/check-versions.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/build/utils.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/config/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/pomodoro3/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/config/test.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/index.html -------------------------------------------------------------------------------- /chapter4/pomodoro3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/package.json -------------------------------------------------------------------------------- /chapter4/pomodoro3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/src/App.vue -------------------------------------------------------------------------------- /chapter4/pomodoro3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/src/main.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/pomodoro3/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/pomodoro3/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro3/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro3/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/.babelrc -------------------------------------------------------------------------------- /chapter4/pomodoro4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/.editorconfig -------------------------------------------------------------------------------- /chapter4/pomodoro4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/.eslintignore -------------------------------------------------------------------------------- /chapter4/pomodoro4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/.gitignore -------------------------------------------------------------------------------- /chapter4/pomodoro4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/README.md -------------------------------------------------------------------------------- /chapter4/pomodoro4/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/build/build.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/build/check-versions.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/build/utils.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/config/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/pomodoro4/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/config/test.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/index.html -------------------------------------------------------------------------------- /chapter4/pomodoro4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/package.json -------------------------------------------------------------------------------- /chapter4/pomodoro4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/src/App.vue -------------------------------------------------------------------------------- /chapter4/pomodoro4/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/src/main.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/pomodoro4/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/pomodoro4/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro4/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro4/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/.babelrc -------------------------------------------------------------------------------- /chapter4/pomodoro5/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/.editorconfig -------------------------------------------------------------------------------- /chapter4/pomodoro5/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/.eslintignore -------------------------------------------------------------------------------- /chapter4/pomodoro5/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/.gitignore -------------------------------------------------------------------------------- /chapter4/pomodoro5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/README.md -------------------------------------------------------------------------------- /chapter4/pomodoro5/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/build/build.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/build/check-versions.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/build/utils.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/config/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/pomodoro5/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/config/test.env.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/index.html -------------------------------------------------------------------------------- /chapter4/pomodoro5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/package.json -------------------------------------------------------------------------------- /chapter4/pomodoro5/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/src/App.vue -------------------------------------------------------------------------------- /chapter4/pomodoro5/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/src/main.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/pomodoro5/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/pomodoro5/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/pomodoro5/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/pomodoro5/test/unit/karma.conf.js -------------------------------------------------------------------------------- /chapter4/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter4/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter4/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter4/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter4/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/README.md -------------------------------------------------------------------------------- /chapter4/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter4/shopping-list/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/build/dev-client.js -------------------------------------------------------------------------------- /chapter4/shopping-list/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/build/dev-server.js -------------------------------------------------------------------------------- /chapter4/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter4/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/shopping-list/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/config/test.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/index.html -------------------------------------------------------------------------------- /chapter4/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/package.json -------------------------------------------------------------------------------- /chapter4/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter4/shopping-list/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/src/assets/logo.png -------------------------------------------------------------------------------- /chapter4/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter4/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/shopping-list/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/shopping-list/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter4/shopping-list/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/.babelrc -------------------------------------------------------------------------------- /chapter4/shopping-list2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/.editorconfig -------------------------------------------------------------------------------- /chapter4/shopping-list2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/.eslintignore -------------------------------------------------------------------------------- /chapter4/shopping-list2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/.gitignore -------------------------------------------------------------------------------- /chapter4/shopping-list2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/README.md -------------------------------------------------------------------------------- /chapter4/shopping-list2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/build/build.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/build/utils.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/config/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/shopping-list2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/config/test.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/index.html -------------------------------------------------------------------------------- /chapter4/shopping-list2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/package.json -------------------------------------------------------------------------------- /chapter4/shopping-list2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/src/App.vue -------------------------------------------------------------------------------- /chapter4/shopping-list2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/src/main.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/shopping-list2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter4/shopping-list2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list2/test/unit/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/.babelrc -------------------------------------------------------------------------------- /chapter4/shopping-list3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/.editorconfig -------------------------------------------------------------------------------- /chapter4/shopping-list3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/.eslintignore -------------------------------------------------------------------------------- /chapter4/shopping-list3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/.gitignore -------------------------------------------------------------------------------- /chapter4/shopping-list3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/README.md -------------------------------------------------------------------------------- /chapter4/shopping-list3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/build/build.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/build/utils.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/config/dev.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/config/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/shopping-list3/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/config/test.env.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/index.html -------------------------------------------------------------------------------- /chapter4/shopping-list3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/package.json -------------------------------------------------------------------------------- /chapter4/shopping-list3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/src/App.vue -------------------------------------------------------------------------------- /chapter4/shopping-list3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list3/src/main.js -------------------------------------------------------------------------------- /chapter4/shopping-list3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter4/shopping-list4/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/.babelrc -------------------------------------------------------------------------------- /chapter4/shopping-list4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/.editorconfig -------------------------------------------------------------------------------- /chapter4/shopping-list4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/.eslintignore -------------------------------------------------------------------------------- /chapter4/shopping-list4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/.eslintrc.js -------------------------------------------------------------------------------- /chapter4/shopping-list4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/.gitignore -------------------------------------------------------------------------------- /chapter4/shopping-list4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/README.md -------------------------------------------------------------------------------- /chapter4/shopping-list4/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/build/build.js -------------------------------------------------------------------------------- /chapter4/shopping-list4/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/build/utils.js -------------------------------------------------------------------------------- /chapter4/shopping-list4/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/config/index.js -------------------------------------------------------------------------------- /chapter4/shopping-list4/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter4/shopping-list4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/index.html -------------------------------------------------------------------------------- /chapter4/shopping-list4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/package.json -------------------------------------------------------------------------------- /chapter4/shopping-list4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/src/App.vue -------------------------------------------------------------------------------- /chapter4/shopping-list4/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter4/shopping-list4/src/main.js -------------------------------------------------------------------------------- /chapter4/shopping-list4/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/npm-debug.log -------------------------------------------------------------------------------- /chapter5/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter5/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter5/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter5/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter5/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/README.md -------------------------------------------------------------------------------- /chapter5/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter5/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter5/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter5/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter5/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/index.html -------------------------------------------------------------------------------- /chapter5/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/package.json -------------------------------------------------------------------------------- /chapter5/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter5/pomodoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/config.js -------------------------------------------------------------------------------- /chapter5/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter5/pomodoro/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter5/pomodoro/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter5/pomodoro/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter5/pomodoro/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter5/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter5/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter5/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/.babelrc -------------------------------------------------------------------------------- /chapter5/pomodoro2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/.editorconfig -------------------------------------------------------------------------------- /chapter5/pomodoro2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/.eslintignore -------------------------------------------------------------------------------- /chapter5/pomodoro2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/.gitignore -------------------------------------------------------------------------------- /chapter5/pomodoro2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/README.md -------------------------------------------------------------------------------- /chapter5/pomodoro2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/build/build.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/build/dev-client.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/build/dev-server.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/build/utils.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/config/dev.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/config/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/pomodoro2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/config/test.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/index.html -------------------------------------------------------------------------------- /chapter5/pomodoro2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/package.json -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/App.vue -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/main.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/pomodoro2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter5/pomodoro2/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter5/pomodoro2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro2/test/unit/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/.babelrc -------------------------------------------------------------------------------- /chapter5/pomodoro3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/.editorconfig -------------------------------------------------------------------------------- /chapter5/pomodoro3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/.eslintignore -------------------------------------------------------------------------------- /chapter5/pomodoro3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/.gitignore -------------------------------------------------------------------------------- /chapter5/pomodoro3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/README.md -------------------------------------------------------------------------------- /chapter5/pomodoro3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/build/build.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/build/dev-client.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/build/dev-server.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/build/utils.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/config/dev.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/config/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/pomodoro3/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/config/test.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/index.html -------------------------------------------------------------------------------- /chapter5/pomodoro3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/package.json -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/App.vue -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/config.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/main.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/pomodoro3/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter5/pomodoro3/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter5/pomodoro3/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro3/test/unit/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/.babelrc -------------------------------------------------------------------------------- /chapter5/pomodoro4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/.editorconfig -------------------------------------------------------------------------------- /chapter5/pomodoro4/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/.eslintignore -------------------------------------------------------------------------------- /chapter5/pomodoro4/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/.gitignore -------------------------------------------------------------------------------- /chapter5/pomodoro4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/README.md -------------------------------------------------------------------------------- /chapter5/pomodoro4/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/build/build.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/build/dev-client.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/build/dev-server.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/build/utils.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/config/dev.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/config/index.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/pomodoro4/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/config/test.env.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/index.html -------------------------------------------------------------------------------- /chapter5/pomodoro4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/package.json -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/App.vue -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/config.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/main.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/pomodoro4/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter5/pomodoro4/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter5/pomodoro4/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/pomodoro4/test/unit/index.js -------------------------------------------------------------------------------- /chapter5/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter5/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter5/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter5/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter5/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/README.md -------------------------------------------------------------------------------- /chapter5/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter5/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter5/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter5/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter5/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/index.html -------------------------------------------------------------------------------- /chapter5/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/package.json -------------------------------------------------------------------------------- /chapter5/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter5/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter5/shopping-list/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/shopping-list2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/.babelrc -------------------------------------------------------------------------------- /chapter5/shopping-list2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/.editorconfig -------------------------------------------------------------------------------- /chapter5/shopping-list2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/.eslintignore -------------------------------------------------------------------------------- /chapter5/shopping-list2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/shopping-list2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/.gitignore -------------------------------------------------------------------------------- /chapter5/shopping-list2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/README.md -------------------------------------------------------------------------------- /chapter5/shopping-list2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/build/build.js -------------------------------------------------------------------------------- /chapter5/shopping-list2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/build/utils.js -------------------------------------------------------------------------------- /chapter5/shopping-list2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/config/index.js -------------------------------------------------------------------------------- /chapter5/shopping-list2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/shopping-list2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/index.html -------------------------------------------------------------------------------- /chapter5/shopping-list2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/package.json -------------------------------------------------------------------------------- /chapter5/shopping-list2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/src/App.vue -------------------------------------------------------------------------------- /chapter5/shopping-list2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list2/src/main.js -------------------------------------------------------------------------------- /chapter5/shopping-list2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/shopping-list3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/.babelrc -------------------------------------------------------------------------------- /chapter5/shopping-list3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/.editorconfig -------------------------------------------------------------------------------- /chapter5/shopping-list3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/.eslintignore -------------------------------------------------------------------------------- /chapter5/shopping-list3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/.eslintrc.js -------------------------------------------------------------------------------- /chapter5/shopping-list3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/.gitignore -------------------------------------------------------------------------------- /chapter5/shopping-list3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/README.md -------------------------------------------------------------------------------- /chapter5/shopping-list3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/build/build.js -------------------------------------------------------------------------------- /chapter5/shopping-list3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/build/utils.js -------------------------------------------------------------------------------- /chapter5/shopping-list3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/config/index.js -------------------------------------------------------------------------------- /chapter5/shopping-list3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter5/shopping-list3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/index.html -------------------------------------------------------------------------------- /chapter5/shopping-list3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/package.json -------------------------------------------------------------------------------- /chapter5/shopping-list3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/src/App.vue -------------------------------------------------------------------------------- /chapter5/shopping-list3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/shopping-list3/src/main.js -------------------------------------------------------------------------------- /chapter5/shopping-list3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter5/simple-store/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/.babelrc -------------------------------------------------------------------------------- /chapter5/simple-store/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /chapter5/simple-store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/README.md -------------------------------------------------------------------------------- /chapter5/simple-store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/index.html -------------------------------------------------------------------------------- /chapter5/simple-store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/package.json -------------------------------------------------------------------------------- /chapter5/simple-store/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/src/App.vue -------------------------------------------------------------------------------- /chapter5/simple-store/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/src/main.js -------------------------------------------------------------------------------- /chapter5/simple-store/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/simple-store/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store/webpack.config.js -------------------------------------------------------------------------------- /chapter5/simple-store2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/.babelrc -------------------------------------------------------------------------------- /chapter5/simple-store2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /chapter5/simple-store2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/README.md -------------------------------------------------------------------------------- /chapter5/simple-store2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/index.html -------------------------------------------------------------------------------- /chapter5/simple-store2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/package.json -------------------------------------------------------------------------------- /chapter5/simple-store2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/src/App.vue -------------------------------------------------------------------------------- /chapter5/simple-store2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/src/main.js -------------------------------------------------------------------------------- /chapter5/simple-store2/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/simple-store2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store2/webpack.config.js -------------------------------------------------------------------------------- /chapter5/simple-store3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/.babelrc -------------------------------------------------------------------------------- /chapter5/simple-store3/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /chapter5/simple-store3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/README.md -------------------------------------------------------------------------------- /chapter5/simple-store3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/index.html -------------------------------------------------------------------------------- /chapter5/simple-store3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/package.json -------------------------------------------------------------------------------- /chapter5/simple-store3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/src/App.vue -------------------------------------------------------------------------------- /chapter5/simple-store3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/src/main.js -------------------------------------------------------------------------------- /chapter5/simple-store3/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/src/vuex/store.js -------------------------------------------------------------------------------- /chapter5/simple-store3/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter5/simple-store3/webpack.config.js -------------------------------------------------------------------------------- /chapter6/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/npm-debug.log -------------------------------------------------------------------------------- /chapter6/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter6/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter6/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter6/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter6/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter6/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/README.md -------------------------------------------------------------------------------- /chapter6/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter6/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter6/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter6/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter6/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter6/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter6/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/index.html -------------------------------------------------------------------------------- /chapter6/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/package.json -------------------------------------------------------------------------------- /chapter6/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter6/pomodoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/config.js -------------------------------------------------------------------------------- /chapter6/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter6/pomodoro/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter6/pomodoro/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter6/pomodoro/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter6/pomodoro/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/src/vuex/store.js -------------------------------------------------------------------------------- /chapter6/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter6/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter6/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter6/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter6/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/.babelrc -------------------------------------------------------------------------------- /chapter6/pomodoro2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/.editorconfig -------------------------------------------------------------------------------- /chapter6/pomodoro2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/.eslintignore -------------------------------------------------------------------------------- /chapter6/pomodoro2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/.eslintrc.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/.gitignore -------------------------------------------------------------------------------- /chapter6/pomodoro2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/README.md -------------------------------------------------------------------------------- /chapter6/pomodoro2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/build/build.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/build/dev-client.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/build/dev-server.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/build/utils.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/config/dev.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/config/index.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter6/pomodoro2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/config/test.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/index.html -------------------------------------------------------------------------------- /chapter6/pomodoro2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/package.json -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/App.vue -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/config.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/main.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/src/vuex/store.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter6/pomodoro2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter6/pomodoro2/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter6/pomodoro2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro2/test/unit/index.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/.babelrc -------------------------------------------------------------------------------- /chapter6/pomodoro3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/.editorconfig -------------------------------------------------------------------------------- /chapter6/pomodoro3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/.eslintignore -------------------------------------------------------------------------------- /chapter6/pomodoro3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/.eslintrc.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/.gitignore -------------------------------------------------------------------------------- /chapter6/pomodoro3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/README.md -------------------------------------------------------------------------------- /chapter6/pomodoro3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/build/build.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/build/dev-client.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/build/dev-server.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/build/utils.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/config/dev.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/config/index.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter6/pomodoro3/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/config/test.env.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/index.html -------------------------------------------------------------------------------- /chapter6/pomodoro3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/package.json -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/App.vue -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/config.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/main.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/src/vuex/store.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter6/pomodoro3/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter6/pomodoro3/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter6/pomodoro3/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/pomodoro3/test/unit/index.js -------------------------------------------------------------------------------- /chapter6/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter6/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter6/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter6/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter6/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter6/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/README.md -------------------------------------------------------------------------------- /chapter6/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter6/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter6/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter6/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter6/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter6/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/index.html -------------------------------------------------------------------------------- /chapter6/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/package.json -------------------------------------------------------------------------------- /chapter6/shopping-list/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/server/db.json -------------------------------------------------------------------------------- /chapter6/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter6/shopping-list/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/src/api/index.js -------------------------------------------------------------------------------- /chapter6/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter6/shopping-list/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list/src/vuex/store.js -------------------------------------------------------------------------------- /chapter6/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter6/shopping-list2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/.babelrc -------------------------------------------------------------------------------- /chapter6/shopping-list2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/.editorconfig -------------------------------------------------------------------------------- /chapter6/shopping-list2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/.eslintignore -------------------------------------------------------------------------------- /chapter6/shopping-list2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/.eslintrc.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/.gitignore -------------------------------------------------------------------------------- /chapter6/shopping-list2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/README.md -------------------------------------------------------------------------------- /chapter6/shopping-list2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/build/build.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/build/utils.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/config/index.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter6/shopping-list2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/index.html -------------------------------------------------------------------------------- /chapter6/shopping-list2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/package.json -------------------------------------------------------------------------------- /chapter6/shopping-list2/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/server/db.json -------------------------------------------------------------------------------- /chapter6/shopping-list2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/src/App.vue -------------------------------------------------------------------------------- /chapter6/shopping-list2/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/src/api/index.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter6/shopping-list2/src/main.js -------------------------------------------------------------------------------- /chapter6/shopping-list2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/npm-debug.log -------------------------------------------------------------------------------- /chapter7/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter7/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter7/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter7/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter7/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/README.md -------------------------------------------------------------------------------- /chapter7/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter7/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter7/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter7/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter7/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter7/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/index.html -------------------------------------------------------------------------------- /chapter7/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/package.json -------------------------------------------------------------------------------- /chapter7/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter7/pomodoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/config.js -------------------------------------------------------------------------------- /chapter7/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter7/pomodoro/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter7/pomodoro/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter7/pomodoro/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter7/pomodoro/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/src/vuex/store.js -------------------------------------------------------------------------------- /chapter7/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter7/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter7/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter7/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/.babelrc -------------------------------------------------------------------------------- /chapter7/pomodoro2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/.editorconfig -------------------------------------------------------------------------------- /chapter7/pomodoro2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/.eslintignore -------------------------------------------------------------------------------- /chapter7/pomodoro2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/.gitignore -------------------------------------------------------------------------------- /chapter7/pomodoro2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/README.md -------------------------------------------------------------------------------- /chapter7/pomodoro2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/build/build.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/build/dev-client.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/build/dev-server.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/build/utils.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/config/dev.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/config/index.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/pomodoro2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/config/test.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/index.html -------------------------------------------------------------------------------- /chapter7/pomodoro2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/package.json -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/App.vue -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/config.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/main.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/src/vuex/store.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/pomodoro2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter7/pomodoro2/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter7/pomodoro2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro2/test/unit/index.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/.babelrc -------------------------------------------------------------------------------- /chapter7/pomodoro3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/.editorconfig -------------------------------------------------------------------------------- /chapter7/pomodoro3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/.eslintignore -------------------------------------------------------------------------------- /chapter7/pomodoro3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/.gitignore -------------------------------------------------------------------------------- /chapter7/pomodoro3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/README.md -------------------------------------------------------------------------------- /chapter7/pomodoro3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/build/build.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/build/dev-client.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/build/dev-server.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/build/utils.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/config/dev.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/config/index.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/pomodoro3/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/config/test.env.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/index.html -------------------------------------------------------------------------------- /chapter7/pomodoro3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/package.json -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/App.vue -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/config.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/main.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/src/vuex/store.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/pomodoro3/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter7/pomodoro3/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter7/pomodoro3/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/pomodoro3/test/unit/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter7/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter7/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter7/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter7/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/README.md -------------------------------------------------------------------------------- /chapter7/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter7/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter7/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter7/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/index.html -------------------------------------------------------------------------------- /chapter7/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/package.json -------------------------------------------------------------------------------- /chapter7/shopping-list/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/server/db.json -------------------------------------------------------------------------------- /chapter7/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter7/shopping-list/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/src/api/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter7/shopping-list/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list/src/vuex/store.js -------------------------------------------------------------------------------- /chapter7/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/shopping-list2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/.babelrc -------------------------------------------------------------------------------- /chapter7/shopping-list2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/.editorconfig -------------------------------------------------------------------------------- /chapter7/shopping-list2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/.eslintignore -------------------------------------------------------------------------------- /chapter7/shopping-list2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/.gitignore -------------------------------------------------------------------------------- /chapter7/shopping-list2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/README.md -------------------------------------------------------------------------------- /chapter7/shopping-list2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/build/build.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/build/utils.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/config/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/shopping-list2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/index.html -------------------------------------------------------------------------------- /chapter7/shopping-list2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/package.json -------------------------------------------------------------------------------- /chapter7/shopping-list2/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/server/db.json -------------------------------------------------------------------------------- /chapter7/shopping-list2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/src/App.vue -------------------------------------------------------------------------------- /chapter7/shopping-list2/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/src/api/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list2/src/main.js -------------------------------------------------------------------------------- /chapter7/shopping-list2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter7/shopping-list3/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/.babelrc -------------------------------------------------------------------------------- /chapter7/shopping-list3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/.editorconfig -------------------------------------------------------------------------------- /chapter7/shopping-list3/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/.eslintignore -------------------------------------------------------------------------------- /chapter7/shopping-list3/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/.eslintrc.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/.gitignore -------------------------------------------------------------------------------- /chapter7/shopping-list3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/README.md -------------------------------------------------------------------------------- /chapter7/shopping-list3/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/build/build.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/build/utils.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/config/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter7/shopping-list3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/index.html -------------------------------------------------------------------------------- /chapter7/shopping-list3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/package.json -------------------------------------------------------------------------------- /chapter7/shopping-list3/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/server/db.json -------------------------------------------------------------------------------- /chapter7/shopping-list3/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/src/App.vue -------------------------------------------------------------------------------- /chapter7/shopping-list3/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/src/api/index.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter7/shopping-list3/src/main.js -------------------------------------------------------------------------------- /chapter7/shopping-list3/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter8/pomodoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/.babelrc -------------------------------------------------------------------------------- /chapter8/pomodoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/.editorconfig -------------------------------------------------------------------------------- /chapter8/pomodoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/.eslintignore -------------------------------------------------------------------------------- /chapter8/pomodoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/.eslintrc.js -------------------------------------------------------------------------------- /chapter8/pomodoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/.gitignore -------------------------------------------------------------------------------- /chapter8/pomodoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/README.md -------------------------------------------------------------------------------- /chapter8/pomodoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/build/build.js -------------------------------------------------------------------------------- /chapter8/pomodoro/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/build/dev-client.js -------------------------------------------------------------------------------- /chapter8/pomodoro/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/build/dev-server.js -------------------------------------------------------------------------------- /chapter8/pomodoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/build/utils.js -------------------------------------------------------------------------------- /chapter8/pomodoro/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/config/dev.env.js -------------------------------------------------------------------------------- /chapter8/pomodoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/config/index.js -------------------------------------------------------------------------------- /chapter8/pomodoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter8/pomodoro/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/config/test.env.js -------------------------------------------------------------------------------- /chapter8/pomodoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/index.html -------------------------------------------------------------------------------- /chapter8/pomodoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/package.json -------------------------------------------------------------------------------- /chapter8/pomodoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/App.vue -------------------------------------------------------------------------------- /chapter8/pomodoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/config.js -------------------------------------------------------------------------------- /chapter8/pomodoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/main.js -------------------------------------------------------------------------------- /chapter8/pomodoro/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/vuex/actions.js -------------------------------------------------------------------------------- /chapter8/pomodoro/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/vuex/getters.js -------------------------------------------------------------------------------- /chapter8/pomodoro/src/vuex/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/vuex/mutations.js -------------------------------------------------------------------------------- /chapter8/pomodoro/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/src/vuex/store.js -------------------------------------------------------------------------------- /chapter8/pomodoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter8/pomodoro/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/test/e2e/runner.js -------------------------------------------------------------------------------- /chapter8/pomodoro/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/test/e2e/specs/test.js -------------------------------------------------------------------------------- /chapter8/pomodoro/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/test/unit/.eslintrc -------------------------------------------------------------------------------- /chapter8/pomodoro/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/pomodoro/test/unit/index.js -------------------------------------------------------------------------------- /chapter8/shopping-list/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/.babelrc -------------------------------------------------------------------------------- /chapter8/shopping-list/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/.editorconfig -------------------------------------------------------------------------------- /chapter8/shopping-list/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/.eslintignore -------------------------------------------------------------------------------- /chapter8/shopping-list/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/.eslintrc.js -------------------------------------------------------------------------------- /chapter8/shopping-list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/.gitignore -------------------------------------------------------------------------------- /chapter8/shopping-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/README.md -------------------------------------------------------------------------------- /chapter8/shopping-list/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/build/build.js -------------------------------------------------------------------------------- /chapter8/shopping-list/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/build/utils.js -------------------------------------------------------------------------------- /chapter8/shopping-list/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/config/dev.env.js -------------------------------------------------------------------------------- /chapter8/shopping-list/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/config/index.js -------------------------------------------------------------------------------- /chapter8/shopping-list/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /chapter8/shopping-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/index.html -------------------------------------------------------------------------------- /chapter8/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/package.json -------------------------------------------------------------------------------- /chapter8/shopping-list/server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/server/db.json -------------------------------------------------------------------------------- /chapter8/shopping-list/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/src/App.vue -------------------------------------------------------------------------------- /chapter8/shopping-list/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/src/api/index.js -------------------------------------------------------------------------------- /chapter8/shopping-list/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/src/main.js -------------------------------------------------------------------------------- /chapter8/shopping-list/src/vuex/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-Vuejs-2/HEAD/chapter8/shopping-list/src/vuex/store.js -------------------------------------------------------------------------------- /chapter8/shopping-list/static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------