为了账号安全,请及时绑定邮箱和手机立即绑定

计算属性赋值的时候报错

http://img1.sycdn.imooc.com//5e1ee400000173bf10290229.jpg

this.text = '全部' 编译器提示报错

Unexpected side effect in "listData" computed property


正在回答

2 回答

这个错误是eslint报的错,不会影响代码运行。如何解决这个eslint错误呢?

使用函数调用的方式

// ...
computed:{
    listData(){
        return this.getListData()
    }
},
methods:{
    getListData(){
        let newList = []
        // 这里是之前的逻辑
        return newList
    }
}
// ...




1 回复 有任何疑惑可以回复我~

或者缓存一下this就行,let that = this。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

计算属性赋值的时候报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信