如下所示,isChecked
是一种反应属性,如果我点击该复选框,如果选中则会更改为true
,如果没有,则会更改为false
。
现在,当我尝试访问它时,
methods:{
getChecked(){
console.log(this.$route)
//when I do console.log(this.$route.isActive), result is undefined.
},
},
如您所见,isActive
不存在。我想访问isActive
,以便我可以将其状态设置为true或false。
无论如何我可以访问isActive
财产吗?感谢。