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 }

浙公网安备 33010602011771号