export default {
data() {
return {
hello:"你好"
}
},
methods:{
open(that) {
that.hello = "hello world!"
},
close() {
this.$options.methods.open(this)
}
}
}
close函数调用open函数,close函数里调用的open函数的参数this赋值给that,这样可以通过that调用到data中的hello。