├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── components │ ├── HelloWorld.vue │ ├── SideBar.vue │ └── SideBarRight.vue ├── main.js ├── plugins │ └── vuetify.js ├── router │ └── index.js ├── store │ └── index.js └── views │ ├── About.vue │ └── Home.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/components/SideBar.vue -------------------------------------------------------------------------------- /src/components/SideBarRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/components/SideBarRight.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs-Vuetify-UI-Design-Sprint-Report-System/HEAD/vue.config.js --------------------------------------------------------------------------------