每次在調用vux的toast插件的時候 大都是在vue項目的實例中。vue
main.jsapi
import Vue from 'vue'; import { ToastPlugin } from 'vux' Vue.use(ToastPlugin)
Vue頁面中this
export default { data () { return {} }, methods: { goToast() { this.$vux.toast.show({ type: 'text', position: 'middle', text: "消息提示!" }) } }
}
但當在api.js中調用toast的寫法就不是如此了。代碼以下:spa
import Vue from 'vue'; import { ToastPlugin } from 'vux' Vue.use(ToastPlugin) let vm = new Vue() vm.$vux.toast.show({ type: 'text', position: 'middle', text: "消息提示!" })