我在计算属性中使用了mapGetters,因此在调度动作时更新了该状态。只是在我本地的生产模式下。 但是,当我将nuxt项目部署到亚马逊服务器时,计算状态属性没有更新。
computed: {
channelTitle() {
return this.currentChannel.title ?
this.currentChannel.title.toUpperCase() : '';
},
...mapGetters('navMenuMeta', ['currentChannel']),
}