@metalsadman I’m sorry but I can’t get it.
In my store, store.js I have
export default {
state: {
pagination: {
rowsPerPage: 7,
page: 1
}
}
And from my table I have
import { mapState } from 'vuex'
export default {
computed: {
...mapState('store', [
'pagination'
])
}
I’m not sure how to implement the watch functionality like in your example if we are no longer using a v-model.