├── .gitignore ├── 02-hello-vue ├── app.js └── index.html ├── 03-v-for ├── app.css ├── app.js ├── data.json └── index.html ├── 04-computed-properties ├── app.css ├── app.js ├── data.json └── index.html ├── 05-components-refactor ├── app.css ├── app.js ├── data.json └── index.html ├── 05-components-simple ├── app.js └── index.html ├── 07-giphyapi-app ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── components │ │ ├── Preview.vue │ │ └── Search.vue │ └── main.js └── webpack.config.js ├── 08-router-simple ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── components │ │ ├── Bar.vue │ │ ├── Foo.vue │ │ └── Home.vue │ └── main.js └── webpack.config.js ├── 08-router ├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── components │ │ ├── Home.vue │ │ ├── UserItem.vue │ │ ├── UserPosts.vue │ │ └── UserProfile.vue │ └── main.js └── webpack.config.js ├── 09-vue-goodies ├── app.js └── index.html ├── 10-vue-testing ├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── components │ │ ├── Preview.vue │ │ └── Search.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 │ ├── Preview.spec.js │ └── Search.spec.js ├── 11-vue-form └── server │ ├── README.md │ ├── api │ └── swagger.yaml │ ├── controllers │ ├── Default.js │ └── DefaultService.js │ ├── index.js │ └── package.json ├── 12-vue-spa ├── .babelrc ├── .gitlab-ci.yml ├── 200.html ├── CNAME ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ ├── halls.json │ │ ├── movieDetails.json │ │ ├── movieTimes.json │ │ ├── movies.json │ │ ├── soldTickets.json │ │ └── ticketPrices.json │ ├── components │ │ ├── AppHeader.vue │ │ ├── Confirmation.vue │ │ ├── Home.vue │ │ ├── Loader.vue │ │ ├── Movie.vue │ │ ├── MovieDetails.vue │ │ ├── SeatSelection.vue │ │ └── TicketSelection.vue │ ├── main.js │ ├── router │ │ └── routerOptions.js │ ├── services │ │ └── service.js │ └── stores │ │ └── store.js ├── webpack.config.js └── yarn.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /02-hello-vue/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/02-hello-vue/app.js -------------------------------------------------------------------------------- /02-hello-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/02-hello-vue/index.html -------------------------------------------------------------------------------- /03-v-for/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/03-v-for/app.css -------------------------------------------------------------------------------- /03-v-for/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/03-v-for/app.js -------------------------------------------------------------------------------- /03-v-for/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/03-v-for/data.json -------------------------------------------------------------------------------- /03-v-for/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/03-v-for/index.html -------------------------------------------------------------------------------- /04-computed-properties/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/04-computed-properties/app.css -------------------------------------------------------------------------------- /04-computed-properties/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/04-computed-properties/app.js -------------------------------------------------------------------------------- /04-computed-properties/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/04-computed-properties/data.json -------------------------------------------------------------------------------- /04-computed-properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/04-computed-properties/index.html -------------------------------------------------------------------------------- /05-components-refactor/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-refactor/app.css -------------------------------------------------------------------------------- /05-components-refactor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-refactor/app.js -------------------------------------------------------------------------------- /05-components-refactor/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-refactor/data.json -------------------------------------------------------------------------------- /05-components-refactor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-refactor/index.html -------------------------------------------------------------------------------- /05-components-simple/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-simple/app.js -------------------------------------------------------------------------------- /05-components-simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/05-components-simple/index.html -------------------------------------------------------------------------------- /07-giphyapi-app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/.babelrc -------------------------------------------------------------------------------- /07-giphyapi-app/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /07-giphyapi-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/README.md -------------------------------------------------------------------------------- /07-giphyapi-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/index.html -------------------------------------------------------------------------------- /07-giphyapi-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/package.json -------------------------------------------------------------------------------- /07-giphyapi-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/src/App.vue -------------------------------------------------------------------------------- /07-giphyapi-app/src/components/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/src/components/Preview.vue -------------------------------------------------------------------------------- /07-giphyapi-app/src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/src/components/Search.vue -------------------------------------------------------------------------------- /07-giphyapi-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/src/main.js -------------------------------------------------------------------------------- /07-giphyapi-app/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/07-giphyapi-app/webpack.config.js -------------------------------------------------------------------------------- /08-router-simple/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/.babelrc -------------------------------------------------------------------------------- /08-router-simple/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /08-router-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/README.md -------------------------------------------------------------------------------- /08-router-simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/index.html -------------------------------------------------------------------------------- /08-router-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/package.json -------------------------------------------------------------------------------- /08-router-simple/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/src/App.vue -------------------------------------------------------------------------------- /08-router-simple/src/components/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/src/components/Bar.vue -------------------------------------------------------------------------------- /08-router-simple/src/components/Foo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/src/components/Foo.vue -------------------------------------------------------------------------------- /08-router-simple/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/src/components/Home.vue -------------------------------------------------------------------------------- /08-router-simple/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/src/main.js -------------------------------------------------------------------------------- /08-router-simple/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router-simple/webpack.config.js -------------------------------------------------------------------------------- /08-router/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/.babelrc -------------------------------------------------------------------------------- /08-router/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /08-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/README.md -------------------------------------------------------------------------------- /08-router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/index.html -------------------------------------------------------------------------------- /08-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/package.json -------------------------------------------------------------------------------- /08-router/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/App.vue -------------------------------------------------------------------------------- /08-router/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/components/Home.vue -------------------------------------------------------------------------------- /08-router/src/components/UserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/components/UserItem.vue -------------------------------------------------------------------------------- /08-router/src/components/UserPosts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/components/UserPosts.vue -------------------------------------------------------------------------------- /08-router/src/components/UserProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/components/UserProfile.vue -------------------------------------------------------------------------------- /08-router/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/src/main.js -------------------------------------------------------------------------------- /08-router/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/08-router/webpack.config.js -------------------------------------------------------------------------------- /09-vue-goodies/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/09-vue-goodies/app.js -------------------------------------------------------------------------------- /09-vue-goodies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/09-vue-goodies/index.html -------------------------------------------------------------------------------- /10-vue-testing/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/.babelrc -------------------------------------------------------------------------------- /10-vue-testing/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/.editorconfig -------------------------------------------------------------------------------- /10-vue-testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/.gitignore -------------------------------------------------------------------------------- /10-vue-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/README.md -------------------------------------------------------------------------------- /10-vue-testing/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/build.js -------------------------------------------------------------------------------- /10-vue-testing/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/check-versions.js -------------------------------------------------------------------------------- /10-vue-testing/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/dev-client.js -------------------------------------------------------------------------------- /10-vue-testing/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/dev-server.js -------------------------------------------------------------------------------- /10-vue-testing/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/utils.js -------------------------------------------------------------------------------- /10-vue-testing/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/webpack.base.conf.js -------------------------------------------------------------------------------- /10-vue-testing/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /10-vue-testing/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /10-vue-testing/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/config/dev.env.js -------------------------------------------------------------------------------- /10-vue-testing/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/config/index.js -------------------------------------------------------------------------------- /10-vue-testing/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /10-vue-testing/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/config/test.env.js -------------------------------------------------------------------------------- /10-vue-testing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/index.html -------------------------------------------------------------------------------- /10-vue-testing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/package.json -------------------------------------------------------------------------------- /10-vue-testing/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/src/App.vue -------------------------------------------------------------------------------- /10-vue-testing/src/components/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/src/components/Preview.vue -------------------------------------------------------------------------------- /10-vue-testing/src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/src/components/Search.vue -------------------------------------------------------------------------------- /10-vue-testing/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/src/main.js -------------------------------------------------------------------------------- /10-vue-testing/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10-vue-testing/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /10-vue-testing/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /10-vue-testing/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/e2e/runner.js -------------------------------------------------------------------------------- /10-vue-testing/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/e2e/specs/test.js -------------------------------------------------------------------------------- /10-vue-testing/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/unit/.eslintrc -------------------------------------------------------------------------------- /10-vue-testing/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/unit/index.js -------------------------------------------------------------------------------- /10-vue-testing/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/unit/karma.conf.js -------------------------------------------------------------------------------- /10-vue-testing/test/unit/specs/Preview.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/unit/specs/Preview.spec.js -------------------------------------------------------------------------------- /10-vue-testing/test/unit/specs/Search.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/10-vue-testing/test/unit/specs/Search.spec.js -------------------------------------------------------------------------------- /11-vue-form/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/README.md -------------------------------------------------------------------------------- /11-vue-form/server/api/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/api/swagger.yaml -------------------------------------------------------------------------------- /11-vue-form/server/controllers/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/controllers/Default.js -------------------------------------------------------------------------------- /11-vue-form/server/controllers/DefaultService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/controllers/DefaultService.js -------------------------------------------------------------------------------- /11-vue-form/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/index.js -------------------------------------------------------------------------------- /11-vue-form/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/11-vue-form/server/package.json -------------------------------------------------------------------------------- /12-vue-spa/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/.babelrc -------------------------------------------------------------------------------- /12-vue-spa/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/.gitlab-ci.yml -------------------------------------------------------------------------------- /12-vue-spa/200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/200.html -------------------------------------------------------------------------------- /12-vue-spa/CNAME: -------------------------------------------------------------------------------- 1 | vue-spa-demo.surge.sh 2 | -------------------------------------------------------------------------------- /12-vue-spa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/README.md -------------------------------------------------------------------------------- /12-vue-spa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/index.html -------------------------------------------------------------------------------- /12-vue-spa/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/package-lock.json -------------------------------------------------------------------------------- /12-vue-spa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/package.json -------------------------------------------------------------------------------- /12-vue-spa/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/App.vue -------------------------------------------------------------------------------- /12-vue-spa/src/assets/halls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/halls.json -------------------------------------------------------------------------------- /12-vue-spa/src/assets/movieDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/movieDetails.json -------------------------------------------------------------------------------- /12-vue-spa/src/assets/movieTimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/movieTimes.json -------------------------------------------------------------------------------- /12-vue-spa/src/assets/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/movies.json -------------------------------------------------------------------------------- /12-vue-spa/src/assets/soldTickets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/soldTickets.json -------------------------------------------------------------------------------- /12-vue-spa/src/assets/ticketPrices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/assets/ticketPrices.json -------------------------------------------------------------------------------- /12-vue-spa/src/components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/AppHeader.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/Confirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/Confirmation.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/Home.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/Loader.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/Movie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/Movie.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/MovieDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/MovieDetails.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/SeatSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/SeatSelection.vue -------------------------------------------------------------------------------- /12-vue-spa/src/components/TicketSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/components/TicketSelection.vue -------------------------------------------------------------------------------- /12-vue-spa/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/main.js -------------------------------------------------------------------------------- /12-vue-spa/src/router/routerOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/router/routerOptions.js -------------------------------------------------------------------------------- /12-vue-spa/src/services/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/services/service.js -------------------------------------------------------------------------------- /12-vue-spa/src/stores/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/src/stores/store.js -------------------------------------------------------------------------------- /12-vue-spa/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/webpack.config.js -------------------------------------------------------------------------------- /12-vue-spa/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/12-vue-spa/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatihacet/vuejs-videolari/HEAD/README.md --------------------------------------------------------------------------------