vue中在api.js中調用vux 的toast插件

每次在調用vuxtoast插件的時候  大都是在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: "消息提示!"
})
相關文章
相關標籤/搜索