├── .gitignore ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── components │ ├── HelloWorld.vue │ ├── RightSideBar.vue │ └── SideBar.vue ├── main.js ├── quasar-user-options.js ├── router │ └── index.js ├── store │ └── index.js ├── styles │ ├── quasar.sass │ └── quasar.variables.sass └── views │ ├── AboutView.vue │ └── HomeView.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/babel.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/RightSideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/components/RightSideBar.vue -------------------------------------------------------------------------------- /src/components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/components/SideBar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/main.js -------------------------------------------------------------------------------- /src/quasar-user-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/quasar-user-options.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/styles/quasar.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/styles/quasar.sass -------------------------------------------------------------------------------- /src/styles/quasar.variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/styles/quasar.variables.sass -------------------------------------------------------------------------------- /src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/views/AboutView.vue -------------------------------------------------------------------------------- /src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/src/views/HomeView.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakaria-29-dev/Vuejs3-Quasar-UI-Design-Patient-appointment-Dashboard-Carousel-Support-Chat/HEAD/vue.config.js --------------------------------------------------------------------------------