├── .gitattributes ├── Chapter01 ├── .DS_Store └── code │ ├── .DS_Store │ └── please-introduce-yourself │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .firebaserc │ ├── .gitignore │ ├── .postcssrc.js │ ├── README.md │ ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js │ ├── database.rules.json │ ├── firebase.json │ ├── functions │ ├── index.js │ └── package.json │ ├── index.html │ ├── package.json │ ├── public │ ├── 404.html │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── MessageCard.vue │ ├── main.js │ └── utils │ │ └── utils.js │ └── static │ └── .gitkeep ├── Chapter02 ├── .DS_Store └── code │ ├── .DS_Store │ ├── example1-vue-intro │ ├── images │ │ ├── glad.png │ │ └── sad.png │ ├── index.html │ └── vue.js │ ├── example10-bootstrap-buttons │ └── index.html │ ├── example11-bootstrap-jumbotron │ └── index.html │ ├── example11-responsive-floats │ └── index.html │ ├── example12-grid-layout │ └── index.html │ ├── example13-vue-bootstrap-components-started │ ├── .DS_Store │ └── components │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ └── main.js │ │ └── static │ │ └── .gitkeep │ ├── example13-vue-bootstrap-components │ ├── .DS_Store │ └── components │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ └── Alert.vue │ │ └── main.js │ │ └── static │ │ └── .gitkeep │ ├── example2-simple-component │ ├── index.html │ └── vue.js │ ├── example3-components-started │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ └── Hello.vue │ │ ├── main.js │ │ └── router │ │ │ └── index.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ ├── example4-components │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Animal.vue │ │ │ ├── Hello.vue │ │ │ └── Zoo.vue │ │ ├── main.js │ │ └── router │ │ │ └── index.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ ├── example5-router-started │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .postcssrc.js │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Bye.vue │ │ │ ├── Hello.vue │ │ │ └── Home.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 │ ├── example6-router │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .postcssrc.js │ ├── README.md │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Bye.vue │ │ │ ├── Hello.vue │ │ │ └── Home.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 │ ├── example7-events-started │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Animal.vue │ │ │ ├── Introduction.vue │ │ │ └── Zoo.vue │ │ └── main.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ ├── example7-events │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Animal.vue │ │ │ ├── Introduction.vue │ │ │ └── Zoo.vue │ │ └── main.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ ├── example8-store-started │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Animal.vue │ │ │ ├── Introduction.vue │ │ │ └── Zoo.vue │ │ └── main.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ ├── example8-store │ ├── .DS_Store │ └── zoo │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ └── webpack.prod.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ └── prod.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── glad.png │ │ │ └── logo.png │ │ ├── components │ │ │ ├── Animal.vue │ │ │ ├── Introduction.vue │ │ │ └── Zoo.vue │ │ ├── main.js │ │ └── store │ │ │ └── index.js │ │ └── static │ │ ├── .gitkeep │ │ └── images │ │ ├── glad.png │ │ └── sad.png │ └── example9-bootstrap-alert │ └── index.html ├── Chapter04 └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ └── 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 │ │ └── test.spec.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ └── Logo.vue │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ └── Tagline.vue │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ └── Workouts.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 │ │ └── test.spec.js │ ├── 3 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ └── index.js │ │ └── 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 │ │ └── test.spec.js │ ├── 4 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ └── SVGCircleSector.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 │ │ └── test.spec.js │ ├── 5 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── config.js │ │ └── 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 │ │ └── test.spec.js │ ├── 6 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── config.js │ │ └── 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 │ │ └── test.spec.js │ ├── 7 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── config.js │ │ └── 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 │ │ └── test.spec.js │ ├── 8 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── config.js │ │ └── 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 │ │ └── test.spec.js │ ├── 9 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── config.js │ │ └── main.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ └── .DS_Store ├── Chapter05 └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ └── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 2 │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ └── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 3 │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ └── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 4 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 5 │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ └── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ └── .DS_Store ├── Chapter06 └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 3 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 4 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 5 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ └── tether.js │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 6 │ ├── .DS_Store │ └── profitoro │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ ├── settings │ │ │ │ ├── AccountSettings.vue │ │ │ │ └── PomodoroTimerSettings.vue │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ ├── tether.js │ │ └── tomato.png │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ └── .DS_Store ├── Chapter07 ├── .DS_Store └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ ├── settings │ │ │ │ ├── AccountSettings.vue │ │ │ │ └── PomodoroTimerSettings.vue │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── router │ │ │ └── index.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ ├── tether.js │ │ └── tomato.png │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .postcssrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ ├── profitoro_logo.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ ├── settings │ │ │ │ ├── AccountSettings.vue │ │ │ │ └── PomodoroTimerSettings.vue │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── router │ │ │ └── index.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ ├── tether.js │ │ └── tomato.png │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 3 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── build │ │ ├── build.js │ │ ├── check-versions.js │ │ ├── dev-client.js │ │ ├── dev-server.js │ │ ├── utils.js │ │ ├── vue-loader.conf.js │ │ ├── webpack.base.conf.js │ │ ├── webpack.dev.conf.js │ │ ├── webpack.prod.conf.js │ │ └── webpack.test.conf.js │ │ ├── config │ │ ├── dev.env.js │ │ ├── index.js │ │ ├── prod.env.js │ │ └── test.env.js │ │ ├── dist │ │ ├── index.html │ │ └── static │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.js │ │ │ ├── css │ │ │ ├── app.0a25e90fba964a3561563f94b0a24d46.css │ │ │ └── app.0a25e90fba964a3561563f94b0a24d46.css.map │ │ │ ├── img │ │ │ ├── profitoro_logo.13ebd6a.svg │ │ │ └── pushups.9f94858.png │ │ │ ├── jquery.js │ │ │ ├── js │ │ │ ├── 0.158b68793a35e4069c4b.js │ │ │ ├── 0.158b68793a35e4069c4b.js.map │ │ │ ├── 1.5742fa19f30ba0cb4099.js │ │ │ ├── 1.5742fa19f30ba0cb4099.js.map │ │ │ ├── 2.adb0ed984d1dcc7aab44.js │ │ │ ├── 2.adb0ed984d1dcc7aab44.js.map │ │ │ ├── 3.9e4f3278e00ca3db07d3.js │ │ │ ├── 3.9e4f3278e00ca3db07d3.js.map │ │ │ ├── app.33fea30b276dc2bf7662.js │ │ │ ├── app.33fea30b276dc2bf7662.js.map │ │ │ ├── manifest.868fc19a6478aea049d6.js │ │ │ ├── manifest.868fc19a6478aea049d6.js.map │ │ │ ├── vendor.1f79f6952d17e23be47e.js │ │ │ └── vendor.1f79f6952d17e23be47e.js.map │ │ │ ├── tether.js │ │ │ └── tomato.png │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── myAvatar.png │ │ │ ├── myAvatar.svg │ │ │ ├── profitoro_logo.svg │ │ │ └── pushups.png │ │ ├── components │ │ │ ├── LandingPage.vue │ │ │ ├── MainContent.vue │ │ │ ├── common │ │ │ │ ├── Logo.vue │ │ │ │ └── index.js │ │ │ ├── landing │ │ │ │ ├── Authentication.vue │ │ │ │ ├── GoToAppLink.vue │ │ │ │ ├── Tagline.vue │ │ │ │ └── index.js │ │ │ └── main │ │ │ │ ├── ContentComponent.vue │ │ │ │ ├── FooterComponent.vue │ │ │ │ ├── HeaderComponent.vue │ │ │ │ ├── index.js │ │ │ │ └── sections │ │ │ │ ├── PomodoroTimer.vue │ │ │ │ ├── Settings.vue │ │ │ │ ├── Statistics.vue │ │ │ │ ├── Workouts.vue │ │ │ │ ├── index.js │ │ │ │ ├── settings │ │ │ │ ├── AccountSettings.vue │ │ │ │ └── PomodoroTimerSettings.vue │ │ │ │ └── timer │ │ │ │ ├── CountDownTimer.vue │ │ │ │ ├── SetTimer.vue │ │ │ │ └── SvgCircleSector.vue │ │ ├── main.js │ │ ├── router │ │ │ └── index.js │ │ ├── store │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ └── utils │ │ │ └── utils.js │ │ ├── static │ │ ├── .gitkeep │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── jquery.js │ │ ├── tether.js │ │ └── tomato.png │ │ └── test │ │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ │ └── unit │ │ ├── .eslintrc │ │ ├── index.js │ │ ├── karma.conf.js │ │ └── specs │ │ └── test.spec.js │ ├── 4 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ └── README.md │ │ ├── components │ │ ├── Logo.vue │ │ └── README.md │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ └── README.md │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ └── favicon.ico │ │ └── store │ │ └── README.md │ ├── 5 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ └── README.md │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ └── README.md │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ └── favicon.ico │ │ └── store │ │ └── README.md │ ├── 6 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ ├── README.md │ │ └── common │ │ │ ├── HeaderComponent.vue │ │ │ └── Logo.vue │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ └── README.md │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── favicon.ico │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── jquery.js │ │ │ └── tether.js │ │ └── store │ │ └── README.md │ ├── 7 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ ├── README.md │ │ └── common │ │ │ ├── HeaderComponent.vue │ │ │ └── Logo.vue │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ └── README.md │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── favicon.ico │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── jquery.js │ │ │ └── tether.js │ │ └── store │ │ └── README.md │ ├── 8 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ ├── README.md │ │ └── common │ │ │ ├── HeaderComponent.vue │ │ │ └── Logo.vue │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ └── README.md │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── favicon.ico │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── jquery.js │ │ │ └── tether.js │ │ └── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ ├── 9 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ ├── README.md │ │ └── common │ │ │ ├── HeaderComponent.vue │ │ │ └── Logo.vue │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── favicon.ico │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── jquery.js │ │ │ └── tether.js │ │ └── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ ├── 10 │ ├── .DS_Store │ └── profitoro-nuxt │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ ├── images │ │ │ └── pushups.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── Logo.vue │ │ ├── README.md │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ └── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── favicon.ico │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ ├── jquery.js │ │ │ └── tether.js │ │ └── main.css │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── .DS_Store │ └── 3.1 │ ├── .DS_Store │ └── profitoro │ ├── .DS_Store │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js │ ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js │ ├── index.html │ ├── package.json │ ├── src │ ├── App.vue │ ├── assets │ │ ├── myAvatar.png │ │ ├── myAvatar.svg │ │ ├── profitoro_logo.svg │ │ └── pushups.png │ ├── components │ │ ├── LandingPage.vue │ │ ├── MainContent.vue │ │ ├── common │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── GoToAppLink.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ └── main │ │ │ ├── ContentComponent.vue │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── index.js │ │ │ └── sections │ │ │ ├── PomodoroTimer.vue │ │ │ ├── Settings.vue │ │ │ ├── Statistics.vue │ │ │ ├── Workouts.vue │ │ │ ├── index.js │ │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ └── PomodoroTimerSettings.vue │ │ │ └── timer │ │ │ ├── CountDownTimer.vue │ │ │ ├── SetTimer.vue │ │ │ └── SvgCircleSector.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ └── utils │ │ └── utils.js │ ├── static │ ├── .gitkeep │ ├── bootstrap.css │ ├── bootstrap.js │ ├── jquery.js │ ├── tether.js │ └── tomato.png │ └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── test.spec.js ├── Chapter08 ├── .DS_Store └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ └── _module.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ └── _module.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 3 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 4 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 5 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 6 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pushups.png │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _custom.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ ├── 7 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ └── tomato.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ └── utils │ │ └── utils.js │ └── .DS_Store ├── Chapter09 ├── .DS_Store └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .eslintrc.js │ │ ├── LICENCE │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ ├── robots.txt │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── sum.js │ │ └── sum.spec.js │ │ └── utils │ │ └── utils.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .eslintrc.js │ │ ├── LICENCE │ │ ├── README.md │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── coverage │ │ ├── clover.xml │ │ ├── coverage-final.json │ │ ├── lcov-report │ │ │ ├── base.css │ │ │ ├── components │ │ │ │ └── common │ │ │ │ │ ├── HeaderComponent.vue.html │ │ │ │ │ ├── Logo.vue.html │ │ │ │ │ └── index.html │ │ │ ├── firebase │ │ │ │ ├── index.html │ │ │ │ └── index.js.html │ │ │ ├── index.html │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sort-arrow-sprite.png │ │ │ ├── sorter.js │ │ │ ├── store │ │ │ │ ├── actions.js.html │ │ │ │ ├── getters.js.html │ │ │ │ ├── index.html │ │ │ │ ├── index.js.html │ │ │ │ ├── mutations.js.html │ │ │ │ └── state.js.html │ │ │ ├── sum.js.html │ │ │ ├── test │ │ │ │ ├── index.html │ │ │ │ └── sum.js.html │ │ │ └── utils │ │ │ │ ├── index.html │ │ │ │ └── utils.js.html │ │ └── lcov.info │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ ├── robots.txt │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ ├── 3 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ └── firebaseMocks.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ ├── 4 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ ├── firebaseMocks.js │ │ └── styleMock.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ ├── 5 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ ├── firebaseMocks.js │ │ └── styleMock.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase.json │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── HeaderComponent.spec.js │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ ├── 6 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ ├── firebaseMocks.js │ │ ├── getterMocks.js │ │ └── styleMock.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── HeaderComponent.spec.js │ │ ├── __snapshots__ │ │ │ └── pages.snapshots.spec.js.snap │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── pages.snapshots.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ └── .DS_Store ├── Chapter10 └── code │ ├── 1 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .firebaserc │ │ ├── LICENCE │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ ├── firebaseMocks.js │ │ ├── getterMocks.js │ │ └── styleMock.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase.json │ │ ├── firebaseapp │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ ├── robots.txt │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── HeaderComponent.spec.js │ │ ├── __snapshots__ │ │ │ └── pages.snapshots.spec.js.snap │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── pages.snapshots.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ ├── 2 │ ├── .DS_Store │ └── profitoro │ │ ├── .DS_Store │ │ ├── .babelrc │ │ ├── .circleci │ │ └── config.yml │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .firebaserc │ │ ├── LICENCE │ │ ├── README.md │ │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── firebaseAppMock.js │ │ ├── firebaseMocks.js │ │ ├── getterMocks.js │ │ └── styleMock.js │ │ ├── assets │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── pause_icon.svg │ │ │ ├── play_icon.svg │ │ │ ├── pushups.png │ │ │ ├── stop_icon.svg │ │ │ ├── tomato.png │ │ │ └── tomato1.png │ │ ├── profitoro_logo.svg │ │ └── styles │ │ │ ├── base │ │ │ ├── _colors.scss │ │ │ ├── _fontSizes.scss │ │ │ ├── _module.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _button.scss │ │ │ ├── _input.scss │ │ │ └── _module.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _mixins.scss │ │ │ ├── _module.scss │ │ │ └── _utils.scss │ │ │ └── vendors │ │ │ ├── _flex.scss │ │ │ ├── _module.scss │ │ │ └── bootstrap │ │ │ ├── .scss-lint.yml │ │ │ ├── _mixins.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transforms.scss │ │ │ └── _visibility.scss │ │ ├── components │ │ ├── common │ │ │ ├── FooterComponent.vue │ │ │ ├── HeaderComponent.vue │ │ │ ├── Logo.vue │ │ │ └── index.js │ │ ├── landing │ │ │ ├── Authentication.vue │ │ │ ├── LogoText.vue │ │ │ ├── Tagline.vue │ │ │ └── index.js │ │ ├── settings │ │ │ ├── AccountSettings.vue │ │ │ ├── PomodoroTimerSettings.vue │ │ │ └── SetTimer.vue │ │ ├── timer │ │ │ ├── CountDownTimer.vue │ │ │ └── SvgCircleSector.vue │ │ └── workouts │ │ │ ├── NewWorkoutComponent.vue │ │ │ ├── WorkoutComponent.vue │ │ │ ├── WorkoutsComponent.vue │ │ │ └── index.js │ │ ├── firebase.json │ │ ├── firebaseapp │ │ └── index.js │ │ ├── layouts │ │ ├── README.md │ │ └── default.vue │ │ ├── middleware │ │ ├── README.md │ │ └── authenticated.js │ │ ├── nuxt.config.js │ │ ├── package.json │ │ ├── pages │ │ ├── about.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── pomodoro.vue │ │ ├── settings.vue │ │ ├── statistics.vue │ │ └── workouts.vue │ │ ├── plugins │ │ └── README.md │ │ ├── static │ │ ├── README.md │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── favicon.ico │ │ ├── jquery.js │ │ ├── main.css │ │ ├── robots.txt │ │ └── tether.js │ │ ├── store │ │ ├── README.md │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ │ ├── test │ │ ├── HeaderComponent.spec.js │ │ ├── __snapshots__ │ │ │ └── pages.snapshots.spec.js.snap │ │ ├── actions.spec.js │ │ ├── mutations.spec.js │ │ ├── pages.snapshots.spec.js │ │ ├── sum.js │ │ ├── sum.spec.js │ │ └── utils.spec.js │ │ └── utils │ │ └── utils.js │ └── .DS_Store ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/.gitattributes -------------------------------------------------------------------------------- /Chapter01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter01/.DS_Store -------------------------------------------------------------------------------- /Chapter01/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter01/code/.DS_Store -------------------------------------------------------------------------------- /Chapter01/code/please-introduce-yourself/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter01/code/please-introduce-yourself/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/.DS_Store -------------------------------------------------------------------------------- /Chapter02/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/.DS_Store -------------------------------------------------------------------------------- /Chapter02/code/example1-vue-intro/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example1-vue-intro/vue.js -------------------------------------------------------------------------------- /Chapter02/code/example13-vue-bootstrap-components-started/components/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example13-vue-bootstrap-components-started/components/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example13-vue-bootstrap-components/components/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example13-vue-bootstrap-components/components/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example3-components-started/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example3-components-started/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example4-components/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example4-components/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example5-router-started/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example5-router-started/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example6-router/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/.babelrc -------------------------------------------------------------------------------- /Chapter02/code/example6-router/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/.eslintrc.js -------------------------------------------------------------------------------- /Chapter02/code/example6-router/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/.gitignore -------------------------------------------------------------------------------- /Chapter02/code/example6-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/README.md -------------------------------------------------------------------------------- /Chapter02/code/example6-router/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example6-router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/index.html -------------------------------------------------------------------------------- /Chapter02/code/example6-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/package.json -------------------------------------------------------------------------------- /Chapter02/code/example6-router/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/src/App.vue -------------------------------------------------------------------------------- /Chapter02/code/example6-router/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example6-router/src/main.js -------------------------------------------------------------------------------- /Chapter02/code/example6-router/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example7-events-started/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example7-events-started/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example7-events/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example7-events/.DS_Store -------------------------------------------------------------------------------- /Chapter02/code/example7-events/zoo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example7-events/zoo/.babelrc -------------------------------------------------------------------------------- /Chapter02/code/example7-events/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example7-events/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example8-store-started/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example8-store-started/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/code/example8-store/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example8-store/.DS_Store -------------------------------------------------------------------------------- /Chapter02/code/example8-store/zoo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example8-store/zoo/.babelrc -------------------------------------------------------------------------------- /Chapter02/code/example8-store/zoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter02/code/example8-store/zoo/README.md -------------------------------------------------------------------------------- /Chapter02/code/example8-store/zoo/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter02/code/example8-store/zoo/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/1/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/1/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/2/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/2/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/3/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/3/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/4/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/4/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/src/config.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/5/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/5/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/src/config.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/6/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/6/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/src/config.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/7/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/7/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/src/config.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/8/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/8/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/.DS_Store -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/README.md -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/index.html -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/package.json -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/src/config.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter04/code/9/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter04/code/9/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter05/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/.DS_Store -------------------------------------------------------------------------------- /Chapter05/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/index.html -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/src/store/actions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by chudaol on 12.06.17. 3 | */ 4 | -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/src/store/mutations.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by chudaol on 12.06.17. 3 | */ 4 | -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter05/code/1/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/1/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/index.html -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter05/code/2/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/2/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/index.html -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter05/code/3/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/3/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter05/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/README.md -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/index.html -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/package.json -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter05/code/4/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/4/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/README.md -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/index.html -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/package.json -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter05/code/5/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter05/code/5/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/1/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/1/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/2/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/2/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/3/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/3/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/4/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/4/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/5/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/5/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter06/code/6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/.DS_Store -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.gitignore -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/README.md -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/index.html -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/package.json -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter06/code/6/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter06/code/6/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/index.html -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter07/code/1/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/1/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter07/code/10/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/10/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/10/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/10/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/10/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/10/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/10/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter07/code/10/profitoro-nuxt/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter07/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/.postcssrc.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/index.html -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter07/code/2/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/2/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter07/code/3.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/index.html -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3.1/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter07/code/3.1/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/code/3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/.babelrc -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/.eslintignore -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/build/build.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/build/utils.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/config/index.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/dist/index.html -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/index.html -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/src/App.vue -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/src/main.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter07/code/3/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/3/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter07/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/4/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/4/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/4/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/4/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/5/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/5/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/5/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/5/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/5/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/5/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter07/code/6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/6/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/6/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/6/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/6/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/6/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/6/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter07/code/7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/7/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/7/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/7/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/7/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/7/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/7/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter07/code/8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/8/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/8/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/8/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/8/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/8/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/8/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter07/code/9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/9/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/9/profitoro-nuxt/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/9/profitoro-nuxt/.DS_Store -------------------------------------------------------------------------------- /Chapter07/code/9/profitoro-nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter07/code/9/profitoro-nuxt/README.md -------------------------------------------------------------------------------- /Chapter07/code/9/profitoro-nuxt/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/1/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/1/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/2/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/2/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/3/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/3/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/4/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/4/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/5/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/5/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/assets/styles/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import 'mixins'; -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/static/main.css: -------------------------------------------------------------------------------- 1 | 2 | body, 3 | html, 4 | #app { 5 | min-height: 100vh; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/6/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/6/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter08/code/7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/README.md -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/package.json -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/static/main.css -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/store/actions.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/store/getters.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/store/index.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/store/state.js -------------------------------------------------------------------------------- /Chapter08/code/7/profitoro/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter08/code/7/profitoro/utils/utils.js -------------------------------------------------------------------------------- /Chapter09/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/LICENCE -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/assets/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/assets/README.md -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/nuxt.config.js -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/pages/about.vue -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/pages/index.vue -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/pages/login.vue -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/static/README.md -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/static/jquery.js -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/static/main.css -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/static/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/static/tether.js -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/1/profitoro/store/README.md -------------------------------------------------------------------------------- /Chapter09/code/1/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/profitoro/LICENCE -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter09/code/2/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/3/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/3/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/4/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/4/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/firebase.json -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/5/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/5/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/profitoro/README.md -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter09/code/6/profitoro/package.json -------------------------------------------------------------------------------- /Chapter09/code/6/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter10/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/.DS_Store -------------------------------------------------------------------------------- /Chapter10/code/1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/.DS_Store -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/.firebaserc -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/LICENCE -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/README.md -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/firebase.json -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/1/profitoro/package.json -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter10/code/1/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /Chapter10/code/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/.DS_Store -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/.DS_Store -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/.editorconfig -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/.eslintrc.js -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/.firebaserc -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/LICENCE -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/README.md -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub' 2 | -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/firebase.json -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/Chapter10/code/2/profitoro/package.json -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter10/code/2/profitoro/test/sum.js: -------------------------------------------------------------------------------- 1 | export default function sum (a, b) { 2 | return a + b 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Vue.js-2-and-Bootstrap-4-Web-Development/HEAD/README.md --------------------------------------------------------------------------------