├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── layouts └── default.vue ├── nuxt.config.js ├── package.json ├── pages └── index.vue └── plugins └── firebase.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # Enables "Sponsor" button on project 2 | 3 | github: lupas 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .nuxt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lupas/nuxt2-firestore/HEAD/plugins/firebase.js --------------------------------------------------------------------------------