使用全局插件的时候通过Vue.use(),他需要再调用new Vue()启动应用之前完成 如下
// 调用 `MyPlugin.install(Vue)`
Vue.use(MyPlugin)
new Vue({
//... options
})
- 是用插件的时候还可以传入一个对象如
Vue.use(MyPlugin, { someOption: true })
使用全局插件的时候通过Vue.use(),他需要再调用new Vue()启动应用之前完成 如下
// 调用 `MyPlugin.install(Vue)`
Vue.use(MyPlugin)
new Vue({
//... options
})
Vue.use(MyPlugin, { someOption: true })