美文网首页
vue 插件的使用

vue 插件的使用

作者: 尼莫nemo | 来源:发表于2018-11-22 11:06 被阅读0次

    使用全局插件的时候通过Vue.use(),他需要再调用new Vue()启动应用之前完成 如下

    // 调用 `MyPlugin.install(Vue)`
    Vue.use(MyPlugin)
    
    new Vue({
      //... options
    })
    
    • 是用插件的时候还可以传入一个对象如
    Vue.use(MyPlugin, { someOption: true })
    

    相关文章

      网友评论

          本文标题:vue 插件的使用

          本文链接:https://www.haomeiwen.com/subject/wqakqqtx.html