├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── .vscode └── extensions.json ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── public ├── favicon.ico └── images │ ├── breakfast.jpg │ ├── curry.jpg │ ├── spaghetti.jpg │ └── veggies.jpg ├── src ├── App.vue ├── assets │ └── logo.svg ├── components │ ├── AppNavbar.vue │ ├── CafeCard.vue │ ├── CafeImage.vue │ └── base │ │ ├── BaseButton.vue │ │ ├── BaseCard.vue │ │ ├── BaseCheckbox.vue │ │ ├── BaseContainer.vue │ │ ├── BaseForm.vue │ │ ├── BaseIcon.vue │ │ ├── BaseImage.vue │ │ ├── BaseImageCard.vue │ │ ├── BaseInput.vue │ │ └── BaseRating.vue ├── layouts │ ├── AppLayout.vue │ └── SidebarLayout.vue ├── main.js ├── router │ └── index.js └── views │ └── HomePage.vue ├── tsconfig.config.json ├── tsconfig.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/README.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/breakfast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/public/images/breakfast.jpg -------------------------------------------------------------------------------- /public/images/curry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/public/images/curry.jpg -------------------------------------------------------------------------------- /public/images/spaghetti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/public/images/spaghetti.jpg -------------------------------------------------------------------------------- /public/images/veggies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/public/images/veggies.jpg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/AppNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/AppNavbar.vue -------------------------------------------------------------------------------- /src/components/CafeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/CafeCard.vue -------------------------------------------------------------------------------- /src/components/CafeImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/CafeImage.vue -------------------------------------------------------------------------------- /src/components/base/BaseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseButton.vue -------------------------------------------------------------------------------- /src/components/base/BaseCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseCard.vue -------------------------------------------------------------------------------- /src/components/base/BaseCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseCheckbox.vue -------------------------------------------------------------------------------- /src/components/base/BaseContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseContainer.vue -------------------------------------------------------------------------------- /src/components/base/BaseForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseForm.vue -------------------------------------------------------------------------------- /src/components/base/BaseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseIcon.vue -------------------------------------------------------------------------------- /src/components/base/BaseImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseImage.vue -------------------------------------------------------------------------------- /src/components/base/BaseImageCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseImageCard.vue -------------------------------------------------------------------------------- /src/components/base/BaseInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseInput.vue -------------------------------------------------------------------------------- /src/components/base/BaseRating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/components/base/BaseRating.vue -------------------------------------------------------------------------------- /src/layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/layouts/AppLayout.vue -------------------------------------------------------------------------------- /src/layouts/SidebarLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/layouts/SidebarLayout.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/views/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/src/views/HomePage.vue -------------------------------------------------------------------------------- /tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/tsconfig.config.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/firebase-with-vue-3-and-vuefire/HEAD/vite.config.ts --------------------------------------------------------------------------------