render: (h) => {
const self = this;
cosole.log(self)// undefined
}
//"vue": "^2.6.10",
render(h){
cosole.log(this)
打印之后 给了一个Proxy。为什么?
}
render: (h) => {
const self = this;
cosole.log(self)// undefined
}
//"vue": "^2.6.10",
render(h){
cosole.log(this)
打印之后 给了一个Proxy。为什么?
}
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
4 回答1.9k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
不要写箭头函数,箭头函数没有this,他里面的this你可以看做一个变量,这样就找到上层作用域了