Vue报错: Property or method "changeLoginType" is not defined on the instance but referenced during render
原因
我这里是因为我代码中的方法不存在,我漏写了,后补充上就好了
解决方案
在methods中添加如下代码:
// 修改登录状态
changeLoginType(bool){
this.loginType = bool
}
学以致用,知行合一
我这里是因为我代码中的方法不存在,我漏写了,后补充上就好了
在methods中添加如下代码:
// 修改登录状态
changeLoginType(bool){
this.loginType = bool
}