Coding
computed 计算属性报错 [Vue warn] Write operation failed computed value is readonly
Kevin.zhao
·
June 27, 2022
·
Last by Kevin.zhao replied at June 28, 2022
·
7131 hits
前几天遇到了这个问题,百度了一下也没有解决方案,记录一下
例:const test = computed(() => i * 2 )
我是直接修改了 test 的值就报了这个错 [Vue warn] Write operation failed computed value is readonly
test 的值不能修改,只能通过计算得到。
解决办法就是把 computed 改成 watch