crud-vuetify-structured-template
crud-vuetify-structured-template copied to clipboard
A great way to structure and bootstrap VueJS + Vuetify + API projects
desta forma, apenas o comando nvm install irá instalar a versão correta do projeto
- find a great unity or e2e test framework, is cypress a good one? - write at least 1 test to help the development - create a `npm run test`...
It's better import all the vuetify library instead of add one by one in the `src/plugins/vuetify.js`
- Add any style to make sure SCSS is working and define where its place
Check if the lint-staged works: ``` "devDependencies": { ... "lint-staged": "^8.1.5", }, "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.{js,vue}": [ "vue-cli-service lint", "git add" ] } ```
- It'd be better having better pages style (a.k.a CSS)
How could we improve the components folder to be more [atomic design style](https://atomicdesign.bradfrost.com/chapter-2/)?
Seria interessante tentar permitir que o usuário agrupe suas anotações por tema ou por categoria, por exemplo: Trabalho, Estudos, Tarefas, Projetos, etc. Mais pra frente também poderia permitir que o...
It'd be amazing if someone could: - test it on windows - add what's difference in the **usage** and **installation** - please, update the **README**
- When we add task inside a real backend API, it should create/update the fields createdAt and updatedAt automatically - Using the json-server, it's possible to do this as soon...