SOURCE

console 命令行工具 X clear

                    
>
console
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>

本项目引用的自定义外部资源