Cannot read property 'push' of undefined
和老师一样的代码,运行时候总报这个错误,应该怎么解决?
export default {
data() {
return {
inputValue: '',
last: []
}
},
methods: {
handleSubmit () {
this.list.push(this.inputValue)
this.inputValue = ''
}
}
};
和老师一样的代码,运行时候总报这个错误,应该怎么解决?
export default {
data() {
return {
inputValue: '',
last: []
}
},
methods: {
handleSubmit () {
this.list.push(this.inputValue)
this.inputValue = ''
}
}
};
2018-07-12
举报