This project shows you a basic Vuex components.
Todo List Widget
We use Vuex to store the state of our data. For example:
Your Todo list
todo item | completed |
---|---|
play guitar | false |
dinner with John | false |
swimming | true |
Something like that we can:
- Add new todo item
- update the
completed
status - remove the todo item (e.g. swimming)
For more detail please go to my GitHub Project: Vuex Todo Manager
Credit: Traversy Media