Computed property "activeTabId" was assigned to but it has no setter.

Computed property “activeTabId” was assigned to but it has no setter.
意思是:‘’已将计算属性“activeTabId”分配给,但它没有setter。‘’
activeTabId是通过vuex 来向模块中state取出来的,首先在 数据双向绑定的时候将 v-model=‘activeTabId’ 改为 :value=‘activeTabId’ ,如下:

<portal-tabs
     ref="tabs"
     :value="activeTabId"
     :panes="tabs"
     @tab-remove="removeTabAsync"
     @tab-click="clickTabAsync"
     @tab-contextmenu="handleTabContextmenu" />

问题 解决了 但是 在右键关闭所有的时候 ,还会出现这个报错,我觉得是因为我应该将 vuex中的 state 的 activeTabId进行更改。

。。。
<template>
  <v-contextmenu-item @click.native.stop="(vm,ev)=>{closeTabs(ev,1)}">
        关闭其他
  </v-contextmenu-item>
</template>
。。。
<script>
import { createNamespacedHelpers } from 'vuex'
const { mapState, mapActions } = createNamespacedHelpers('manager')

 methods: {
    ...mapActions(['setCurrentAsync' ]),
     closeTabs (ev, action) {
      const data = this.tabContextMenuData
      if (!data) return
      const tabId = data.id
      switch (action) {
        case 0: // close self
          this.removeTabAsync(tabId, ev)
          break
        case 1: // close other
          for (let i = this.tabs.length - 1; i >= 0; i--) {
            const tab = this.tabs[i]
            if (tab.id !== tabId) {
              this.tabs.splice(i, 1)
            }
          }
          // this.activeTabId = tabId
          this.setCurrentAsync(tabId)
          // this.updateTabsView()
          break
        case 2: // close all
          while (this.tabs.length) this.tabs.pop()
          // this.activeTabId = null
          this.setCurrentAsync(null)
          // this.updateTabsView()
          break
      }
    },
    }
</script>

问题搞定。希望对你有帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值