vue methods中的方法无法给data中的变量赋值
data() { return { count: 0, isReg: false, name: '', password: '', repeat: '' } }, methods: { login: function () { if (localStorage.getItem('name') == this.name && localStorage.getItem('password') == this.password) { this.$router.push('/home') } else { alert('用户名或者密码错误') } }, reg: function () { this.isReg = true//赋值无效 this.count++ },