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