我目前正在尝试tags
从 Vuex 检索 Searchbar 模块中的 。但是,它不是反应性的。
这是组件:
<template>
<div class="tags">
<tag v-for="tag in tags" :key="tag.name">{{ tag.name }}</tag>
</div>
</template>
import { defineComponent, computed } from '@vue/composition-api';
import store from '@/store/index';
import Tag from '@/components/BaseTag.vue';
export default defineComponent({
components: {
Tag
},
setup() {
const tags = computed(() => store.getters['Searchbar/all']);
return {
tags
};
}
});
和 vuex 模块
import { Module, VuexModule, Mutation } from 'vuex-module-decorators';
import { TagType } from '@/enums';
type VuexTag = { name: string; type: TagType };
@Module({
namespaced: true
})
export default class Searchbar extends VuexModule {
private tagsInput: Array<VuexTag> = [];
get all(): Array<VuexTag> {
return this.tagsInput;
}
@Mutation
addTag(tag: VuexTag): void {
this.tagsInput[this.tagsInput.length] = tag;
}
@Mutation
removeTag(index: number): void {
this.tagsInput.splice(index, 1);
}
}
我不明白为什么。我正在使用 Typescript,所以它不支持store.Searchbar.getters['all'])
...有想法吗?