var ms = {
open:{
show(num){
alert(num)
}
}
}
Vue.prototype.ms = ms
var app = new Vue({
el:'#app',
data:{
msg:666
},
computed:{
msg2(){
return this.msg
}
}
})
<div id='app'>
<button @click='ms.open.show(888)'>按钮</button>
<p>{{msg}}</p>
</div>