├── README.md ├── Restaurant-project ├── backend │ └── db.json └── frontend │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Home.vue │ │ ├── PageNotFound.vue │ │ ├── SignUp.vue │ │ └── login.vue │ ├── main.js │ └── routes.js │ └── vue.config.js ├── api-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── GetApi.vue │ │ ├── HomeComponent.vue │ │ ├── PageNotFound.vue │ │ └── PostApi.vue │ ├── main.js │ └── routes.js └── vue.config.js ├── complete-form-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── CompleteForm.vue │ └── main.js └── vue.config.js ├── dynamic-component-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Footer.vue │ │ ├── JavaComponent.vue │ │ ├── LaravelComponent.vue │ │ └── PhpComponent.vue │ └── main.js └── vue.config.js ├── first-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── CssBinding.vue │ │ ├── HelloWorld.vue │ │ └── HomePage.vue │ └── main.js └── vue.config.js ├── my-vue-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── CheckBox.vue │ │ ├── ConditionalStatments.vue │ │ ├── FormInput.vue │ │ ├── HelloWorld.vue │ │ ├── HomePage.vue │ │ ├── LoopsStatment.vue │ │ ├── PassDataToChild.vue │ │ ├── ReuseComponent.vue │ │ └── UseReausComponent.vue │ └── main.js └── vue.config.js ├── myvue-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── ChildComponent.vue │ │ ├── CompleteForm.vue │ │ ├── HelloWorld.vue │ │ ├── RefComponent.vue │ │ ├── SimpleForm.vue │ │ ├── StudentsList.vue │ │ └── TeachersList.vue │ └── main.js └── vue.config.js ├── non-propes-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── ComputedProperty.vue │ │ ├── NonProps.vue │ │ ├── SlotsComponent.vue │ │ └── WatcherComponent.vue │ └── main.js └── vue.config.js ├── practice-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── CssBinding.vue │ │ └── HomePage.vue │ └── main.js └── vue.config.js ├── routs-app ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── AboutComponent.vue │ │ ├── ContactComponent.vue │ │ ├── HomeComponent.vue │ │ ├── PageNotFound.vue │ │ └── ProfileComponent.vue │ ├── main.js │ └── routes.js └── vue.config.js ├── textReplacer-app ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.vue │ ├── assets │ │ ├── image │ │ │ └── 2-removebg-preview.png │ │ └── vue.svg │ ├── components │ │ ├── 2-removebg-preview.png │ │ ├── 2.png │ │ ├── EditText.vue │ │ └── ReplaceText.vue │ ├── main.js │ ├── routes.js │ └── style.css └── vite.config.js ├── vue-life-cycle ├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── BeforeCreated.vue │ │ ├── BeforeMounted.vue │ │ └── BeforeUpdate.vue │ └── main.js └── vue.config.js ├── vue-roadmap ├── New DOC Document.doc └── projects.doc └── weather-app ├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.vue ├── assets │ └── vue.svg ├── components │ └── SiteNavigation.vue ├── main.js ├── routes.js └── style.css └── vite.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/README.md -------------------------------------------------------------------------------- /Restaurant-project/backend/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/backend/db.json -------------------------------------------------------------------------------- /Restaurant-project/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/.gitignore -------------------------------------------------------------------------------- /Restaurant-project/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/README.md -------------------------------------------------------------------------------- /Restaurant-project/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/babel.config.js -------------------------------------------------------------------------------- /Restaurant-project/frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/jsconfig.json -------------------------------------------------------------------------------- /Restaurant-project/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/package-lock.json -------------------------------------------------------------------------------- /Restaurant-project/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/package.json -------------------------------------------------------------------------------- /Restaurant-project/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/public/favicon.ico -------------------------------------------------------------------------------- /Restaurant-project/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/public/index.html -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/App.vue -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/components/Home.vue -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/components/PageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/components/PageNotFound.vue -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/components/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/components/SignUp.vue -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/components/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/components/login.vue -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/main.js -------------------------------------------------------------------------------- /Restaurant-project/frontend/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/src/routes.js -------------------------------------------------------------------------------- /Restaurant-project/frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/Restaurant-project/frontend/vue.config.js -------------------------------------------------------------------------------- /api-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/.gitignore -------------------------------------------------------------------------------- /api-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/README.md -------------------------------------------------------------------------------- /api-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/babel.config.js -------------------------------------------------------------------------------- /api-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/jsconfig.json -------------------------------------------------------------------------------- /api-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/package-lock.json -------------------------------------------------------------------------------- /api-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/package.json -------------------------------------------------------------------------------- /api-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/public/favicon.ico -------------------------------------------------------------------------------- /api-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/public/index.html -------------------------------------------------------------------------------- /api-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/App.vue -------------------------------------------------------------------------------- /api-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/assets/logo.png -------------------------------------------------------------------------------- /api-app/src/components/GetApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/components/GetApi.vue -------------------------------------------------------------------------------- /api-app/src/components/HomeComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/components/HomeComponent.vue -------------------------------------------------------------------------------- /api-app/src/components/PageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/components/PageNotFound.vue -------------------------------------------------------------------------------- /api-app/src/components/PostApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/components/PostApi.vue -------------------------------------------------------------------------------- /api-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/main.js -------------------------------------------------------------------------------- /api-app/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/src/routes.js -------------------------------------------------------------------------------- /api-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/api-app/vue.config.js -------------------------------------------------------------------------------- /complete-form-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/.gitignore -------------------------------------------------------------------------------- /complete-form-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/README.md -------------------------------------------------------------------------------- /complete-form-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/babel.config.js -------------------------------------------------------------------------------- /complete-form-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/jsconfig.json -------------------------------------------------------------------------------- /complete-form-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/package-lock.json -------------------------------------------------------------------------------- /complete-form-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/package.json -------------------------------------------------------------------------------- /complete-form-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/public/favicon.ico -------------------------------------------------------------------------------- /complete-form-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/public/index.html -------------------------------------------------------------------------------- /complete-form-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/src/App.vue -------------------------------------------------------------------------------- /complete-form-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/src/assets/logo.png -------------------------------------------------------------------------------- /complete-form-app/src/components/CompleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/src/components/CompleteForm.vue -------------------------------------------------------------------------------- /complete-form-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/src/main.js -------------------------------------------------------------------------------- /complete-form-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/complete-form-app/vue.config.js -------------------------------------------------------------------------------- /dynamic-component-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/.gitignore -------------------------------------------------------------------------------- /dynamic-component-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/README.md -------------------------------------------------------------------------------- /dynamic-component-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/babel.config.js -------------------------------------------------------------------------------- /dynamic-component-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/jsconfig.json -------------------------------------------------------------------------------- /dynamic-component-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/package-lock.json -------------------------------------------------------------------------------- /dynamic-component-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/package.json -------------------------------------------------------------------------------- /dynamic-component-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/public/favicon.ico -------------------------------------------------------------------------------- /dynamic-component-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/public/index.html -------------------------------------------------------------------------------- /dynamic-component-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/App.vue -------------------------------------------------------------------------------- /dynamic-component-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/assets/logo.png -------------------------------------------------------------------------------- /dynamic-component-app/src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/components/Footer.vue -------------------------------------------------------------------------------- /dynamic-component-app/src/components/JavaComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/components/JavaComponent.vue -------------------------------------------------------------------------------- /dynamic-component-app/src/components/LaravelComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/components/LaravelComponent.vue -------------------------------------------------------------------------------- /dynamic-component-app/src/components/PhpComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/components/PhpComponent.vue -------------------------------------------------------------------------------- /dynamic-component-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/src/main.js -------------------------------------------------------------------------------- /dynamic-component-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/dynamic-component-app/vue.config.js -------------------------------------------------------------------------------- /first-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/.gitignore -------------------------------------------------------------------------------- /first-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/README.md -------------------------------------------------------------------------------- /first-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/babel.config.js -------------------------------------------------------------------------------- /first-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/jsconfig.json -------------------------------------------------------------------------------- /first-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/package-lock.json -------------------------------------------------------------------------------- /first-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/package.json -------------------------------------------------------------------------------- /first-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/public/favicon.ico -------------------------------------------------------------------------------- /first-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/public/index.html -------------------------------------------------------------------------------- /first-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/App.vue -------------------------------------------------------------------------------- /first-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/assets/logo.png -------------------------------------------------------------------------------- /first-app/src/components/CssBinding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/components/CssBinding.vue -------------------------------------------------------------------------------- /first-app/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /first-app/src/components/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/components/HomePage.vue -------------------------------------------------------------------------------- /first-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/src/main.js -------------------------------------------------------------------------------- /first-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/first-app/vue.config.js -------------------------------------------------------------------------------- /my-vue-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/.gitignore -------------------------------------------------------------------------------- /my-vue-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/README.md -------------------------------------------------------------------------------- /my-vue-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/babel.config.js -------------------------------------------------------------------------------- /my-vue-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/jsconfig.json -------------------------------------------------------------------------------- /my-vue-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/package-lock.json -------------------------------------------------------------------------------- /my-vue-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/package.json -------------------------------------------------------------------------------- /my-vue-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/public/favicon.ico -------------------------------------------------------------------------------- /my-vue-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/public/index.html -------------------------------------------------------------------------------- /my-vue-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/App.vue -------------------------------------------------------------------------------- /my-vue-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/assets/logo.png -------------------------------------------------------------------------------- /my-vue-app/src/components/CheckBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/CheckBox.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/ConditionalStatments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/ConditionalStatments.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/FormInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/FormInput.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/HomePage.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/LoopsStatment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/LoopsStatment.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/PassDataToChild.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/PassDataToChild.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/ReuseComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/ReuseComponent.vue -------------------------------------------------------------------------------- /my-vue-app/src/components/UseReausComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/components/UseReausComponent.vue -------------------------------------------------------------------------------- /my-vue-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/src/main.js -------------------------------------------------------------------------------- /my-vue-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/my-vue-app/vue.config.js -------------------------------------------------------------------------------- /myvue-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/.gitignore -------------------------------------------------------------------------------- /myvue-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/README.md -------------------------------------------------------------------------------- /myvue-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/babel.config.js -------------------------------------------------------------------------------- /myvue-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/jsconfig.json -------------------------------------------------------------------------------- /myvue-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/package-lock.json -------------------------------------------------------------------------------- /myvue-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/package.json -------------------------------------------------------------------------------- /myvue-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/public/favicon.ico -------------------------------------------------------------------------------- /myvue-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/public/index.html -------------------------------------------------------------------------------- /myvue-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/App.vue -------------------------------------------------------------------------------- /myvue-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/assets/logo.png -------------------------------------------------------------------------------- /myvue-app/src/components/ChildComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/ChildComponent.vue -------------------------------------------------------------------------------- /myvue-app/src/components/CompleteForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/CompleteForm.vue -------------------------------------------------------------------------------- /myvue-app/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /myvue-app/src/components/RefComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/RefComponent.vue -------------------------------------------------------------------------------- /myvue-app/src/components/SimpleForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/SimpleForm.vue -------------------------------------------------------------------------------- /myvue-app/src/components/StudentsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/StudentsList.vue -------------------------------------------------------------------------------- /myvue-app/src/components/TeachersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/components/TeachersList.vue -------------------------------------------------------------------------------- /myvue-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/src/main.js -------------------------------------------------------------------------------- /myvue-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/myvue-app/vue.config.js -------------------------------------------------------------------------------- /non-propes-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/.gitignore -------------------------------------------------------------------------------- /non-propes-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/README.md -------------------------------------------------------------------------------- /non-propes-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/babel.config.js -------------------------------------------------------------------------------- /non-propes-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/jsconfig.json -------------------------------------------------------------------------------- /non-propes-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/package-lock.json -------------------------------------------------------------------------------- /non-propes-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/package.json -------------------------------------------------------------------------------- /non-propes-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/public/favicon.ico -------------------------------------------------------------------------------- /non-propes-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/public/index.html -------------------------------------------------------------------------------- /non-propes-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/App.vue -------------------------------------------------------------------------------- /non-propes-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/assets/logo.png -------------------------------------------------------------------------------- /non-propes-app/src/components/ComputedProperty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/components/ComputedProperty.vue -------------------------------------------------------------------------------- /non-propes-app/src/components/NonProps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/components/NonProps.vue -------------------------------------------------------------------------------- /non-propes-app/src/components/SlotsComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/components/SlotsComponent.vue -------------------------------------------------------------------------------- /non-propes-app/src/components/WatcherComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/components/WatcherComponent.vue -------------------------------------------------------------------------------- /non-propes-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/src/main.js -------------------------------------------------------------------------------- /non-propes-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/non-propes-app/vue.config.js -------------------------------------------------------------------------------- /practice-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/.gitignore -------------------------------------------------------------------------------- /practice-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/README.md -------------------------------------------------------------------------------- /practice-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/babel.config.js -------------------------------------------------------------------------------- /practice-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/jsconfig.json -------------------------------------------------------------------------------- /practice-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/package-lock.json -------------------------------------------------------------------------------- /practice-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/package.json -------------------------------------------------------------------------------- /practice-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/public/favicon.ico -------------------------------------------------------------------------------- /practice-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/public/index.html -------------------------------------------------------------------------------- /practice-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/src/App.vue -------------------------------------------------------------------------------- /practice-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/src/assets/logo.png -------------------------------------------------------------------------------- /practice-app/src/components/CssBinding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/src/components/CssBinding.vue -------------------------------------------------------------------------------- /practice-app/src/components/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/src/components/HomePage.vue -------------------------------------------------------------------------------- /practice-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/src/main.js -------------------------------------------------------------------------------- /practice-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/practice-app/vue.config.js -------------------------------------------------------------------------------- /routs-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/.gitignore -------------------------------------------------------------------------------- /routs-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/README.md -------------------------------------------------------------------------------- /routs-app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/babel.config.js -------------------------------------------------------------------------------- /routs-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/jsconfig.json -------------------------------------------------------------------------------- /routs-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/package-lock.json -------------------------------------------------------------------------------- /routs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/package.json -------------------------------------------------------------------------------- /routs-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/public/favicon.ico -------------------------------------------------------------------------------- /routs-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/public/index.html -------------------------------------------------------------------------------- /routs-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/App.vue -------------------------------------------------------------------------------- /routs-app/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/assets/logo.png -------------------------------------------------------------------------------- /routs-app/src/components/AboutComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/components/AboutComponent.vue -------------------------------------------------------------------------------- /routs-app/src/components/ContactComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/components/ContactComponent.vue -------------------------------------------------------------------------------- /routs-app/src/components/HomeComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/components/HomeComponent.vue -------------------------------------------------------------------------------- /routs-app/src/components/PageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/components/PageNotFound.vue -------------------------------------------------------------------------------- /routs-app/src/components/ProfileComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/components/ProfileComponent.vue -------------------------------------------------------------------------------- /routs-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/main.js -------------------------------------------------------------------------------- /routs-app/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/src/routes.js -------------------------------------------------------------------------------- /routs-app/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/routs-app/vue.config.js -------------------------------------------------------------------------------- /textReplacer-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/.gitignore -------------------------------------------------------------------------------- /textReplacer-app/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /textReplacer-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/README.md -------------------------------------------------------------------------------- /textReplacer-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/index.html -------------------------------------------------------------------------------- /textReplacer-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/package-lock.json -------------------------------------------------------------------------------- /textReplacer-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/package.json -------------------------------------------------------------------------------- /textReplacer-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/public/vite.svg -------------------------------------------------------------------------------- /textReplacer-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/App.vue -------------------------------------------------------------------------------- /textReplacer-app/src/assets/image/2-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/assets/image/2-removebg-preview.png -------------------------------------------------------------------------------- /textReplacer-app/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/assets/vue.svg -------------------------------------------------------------------------------- /textReplacer-app/src/components/2-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/components/2-removebg-preview.png -------------------------------------------------------------------------------- /textReplacer-app/src/components/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/components/2.png -------------------------------------------------------------------------------- /textReplacer-app/src/components/EditText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/components/EditText.vue -------------------------------------------------------------------------------- /textReplacer-app/src/components/ReplaceText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/components/ReplaceText.vue -------------------------------------------------------------------------------- /textReplacer-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/main.js -------------------------------------------------------------------------------- /textReplacer-app/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/src/routes.js -------------------------------------------------------------------------------- /textReplacer-app/src/style.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; -------------------------------------------------------------------------------- /textReplacer-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/textReplacer-app/vite.config.js -------------------------------------------------------------------------------- /vue-life-cycle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/.gitignore -------------------------------------------------------------------------------- /vue-life-cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/README.md -------------------------------------------------------------------------------- /vue-life-cycle/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/babel.config.js -------------------------------------------------------------------------------- /vue-life-cycle/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/jsconfig.json -------------------------------------------------------------------------------- /vue-life-cycle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/package-lock.json -------------------------------------------------------------------------------- /vue-life-cycle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/package.json -------------------------------------------------------------------------------- /vue-life-cycle/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/public/favicon.ico -------------------------------------------------------------------------------- /vue-life-cycle/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/public/index.html -------------------------------------------------------------------------------- /vue-life-cycle/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/App.vue -------------------------------------------------------------------------------- /vue-life-cycle/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/assets/logo.png -------------------------------------------------------------------------------- /vue-life-cycle/src/components/BeforeCreated.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/components/BeforeCreated.vue -------------------------------------------------------------------------------- /vue-life-cycle/src/components/BeforeMounted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/components/BeforeMounted.vue -------------------------------------------------------------------------------- /vue-life-cycle/src/components/BeforeUpdate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/components/BeforeUpdate.vue -------------------------------------------------------------------------------- /vue-life-cycle/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/src/main.js -------------------------------------------------------------------------------- /vue-life-cycle/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-life-cycle/vue.config.js -------------------------------------------------------------------------------- /vue-roadmap/New DOC Document.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-roadmap/New DOC Document.doc -------------------------------------------------------------------------------- /vue-roadmap/projects.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/vue-roadmap/projects.doc -------------------------------------------------------------------------------- /weather-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/.gitignore -------------------------------------------------------------------------------- /weather-app/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /weather-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/README.md -------------------------------------------------------------------------------- /weather-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/index.html -------------------------------------------------------------------------------- /weather-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/package-lock.json -------------------------------------------------------------------------------- /weather-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/package.json -------------------------------------------------------------------------------- /weather-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/public/vite.svg -------------------------------------------------------------------------------- /weather-app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/src/App.vue -------------------------------------------------------------------------------- /weather-app/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/src/assets/vue.svg -------------------------------------------------------------------------------- /weather-app/src/components/SiteNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/src/components/SiteNavigation.vue -------------------------------------------------------------------------------- /weather-app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/src/main.js -------------------------------------------------------------------------------- /weather-app/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/src/routes.js -------------------------------------------------------------------------------- /weather-app/src/style.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; -------------------------------------------------------------------------------- /weather-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waqas-Khan-CodeCanvas/vuejs-learning/HEAD/weather-app/vite.config.js --------------------------------------------------------------------------------