main.js中:Vue.use(MintUI)Vue.use(VueRouter)在vue实例中用:console.log(this);可以看到$route和$router等。并没有看到$toast等mintUI的组件,但却可以正常使用this.$toast();请问这里的$toast是来自哪里的?
1 回答
紫衣仙女
TA贡献1839条经验 获得超15个赞
官方文档没写,但看下源码的index.js就找得到
Vue.$messagebox = Vue.prototype.$messagebox = MessageBox;
Vue.$toast = Vue.prototype.$toast = Toast;
Vue.$indicator = Vue.prototype.$indicator = Indicator;
添加回答
举报
0/150
提交
取消