I started learning Veux. Using the example of creating a card and saving its contents. I created input bound it using two-way binding v-bind - passed it to State. And then nothing is clear. Maybe there are detailed lessons or your examples and help.
<!-- Template
<input id="nameTask" type="text" class="form-control" placeholder="Input Label For New ToDo"
aria-describedby="basic-addon1" v-model="headPrivive">
--!>
<!-- Script
headPrivive () {
return this.$store.getters.headPrivive;
} --!>
<!--Store
import { createStore } from 'vuex'
const store = createStore({
state: {
headPrivive: " ",
},
--!>