Vue.js——amtd vue Model.confirm改变this

官方的例子,点击确定和取消的函数this都指向undefined

 onOk() {
          console.log(this);//undefined
 },
 onCancel() {
          console.log(this);//undefined
 },

如要获取全局的变量,需要改变this的指向,可以使用箭头函数来完成

onOk:()=>{
   console.log(this) // 全局的this      
}
onCancel:()=>{
   console.log(this) // 全局的this      
}

 

posted @ 2020-10-08 09:47  小昱同学  阅读(350)  评论(0)    收藏  举报