我有一个项目列表,我想将样式应用于当前选定的样式。我也在使用Vuex来管理状态。
我的列表组件:
const List = Vue.component('list', {
template:
'<template v-if="items.length > 0">' +
'<ul class="list-group md-col-12">' +
'<a href="#" v-for="(item, index) in items" class="list-group-item list-group-item-action" v-bind:class="{ active: item.isActive }" v-on:click="selectItem(index);">{{ g.text }}</a>' +
'</ul>' +
'</template>'
computed: {
items: function() {
return this.$store.state.items;
}
},
methods: {
selectItem: function (index) {
this.$store.commit('selectItem', index);
}
}
});
我的商店:
const store = new Vuex.Store({
state: {
items: [],
currentIndex: -1
},
mutations: {
selectItem: function(state, index) {
if (index === state.currentIndex) {
return;
}
if (state.currentIndex > -1) {
delete state.items[state.currentIndex].isActive;
}
state.currentIndex = index;
state.items[state.currentIndex].isActive = true;
}
}
});
我所看到的,同样使用Chrome DevTools中的Vue'标签'是每当我点击列表中的某个项目时,“items”数组正在正确更新,但是没有设置类。
此外,使用时间旅行调试来完成所有突变,在这种情况下,类已设置。
知道为什么会出现这种行为以及如何解决这个问题?
答案 0 :(得分:7)
事实证明我应该更深入地阅读文档。特别是Change Detection Caveats。
解决方案是改变商店突变:
selectItem: function(state, index) {
if (index === state.currentIndex) {
return;
}
if (state.currentIndex > -1) {
Vue.delete(state.items[state.currentIndex], 'isActive');
}
state.currentIndex = index;
Vue.set(state.items[state.currentIndex], 'isActive', true);
}
此处的关键是使用Vue.delete
和Vue.set
函数。
答案 1 :(得分:-1)
请尝试以下操作:
const List = Vue.component('list', {
template:
'<template>' +
'<ul class="list-group md-col-12">' +
'<a href="#" v-for="(item, index) in items" class="list-group-item list-group-item-action" v-bind:class="{ active: item.isActive }" v-on:click="selectItem(index);">{{ g.text }}</a>' +
'</ul>' +
'</template>'