├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── Views │ ├── AuthView.vue │ ├── EditNoteView.vue │ ├── NotesView.vue │ └── StatsView.vue ├── assets │ ├── base.css │ ├── logo.svg │ └── main.css ├── components │ ├── Layout │ │ └── NavBar.vue │ └── Notes │ │ ├── AddEditNote.vue │ │ ├── DeleteNoteModal.vue │ │ └── SingleNote.vue ├── composables │ └── useCharactersLimit.js ├── directives │ └── vAutofocus.js ├── js │ └── firebase.js ├── main.js ├── router │ └── index.js └── stores │ └── NotesStore.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/Views/AuthView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/Views/AuthView.vue -------------------------------------------------------------------------------- /src/Views/EditNoteView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/Views/EditNoteView.vue -------------------------------------------------------------------------------- /src/Views/NotesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/Views/NotesView.vue -------------------------------------------------------------------------------- /src/Views/StatsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/Views/StatsView.vue -------------------------------------------------------------------------------- /src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/assets/base.css -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/assets/main.css -------------------------------------------------------------------------------- /src/components/Layout/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/components/Layout/NavBar.vue -------------------------------------------------------------------------------- /src/components/Notes/AddEditNote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/components/Notes/AddEditNote.vue -------------------------------------------------------------------------------- /src/components/Notes/DeleteNoteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/components/Notes/DeleteNoteModal.vue -------------------------------------------------------------------------------- /src/components/Notes/SingleNote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/components/Notes/SingleNote.vue -------------------------------------------------------------------------------- /src/composables/useCharactersLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/composables/useCharactersLimit.js -------------------------------------------------------------------------------- /src/directives/vAutofocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/directives/vAutofocus.js -------------------------------------------------------------------------------- /src/js/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/js/firebase.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/stores/NotesStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/src/stores/NotesStore.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leelanarasimha/noteslist-vue/HEAD/vite.config.js --------------------------------------------------------------------------------