Vue中使用插件
建一个插件文件
let MyPlugin = {} Myplugin.install = function(Vue,options){} export default MyPlugin
main.js中导入这个插件
import Myplugin from './lib/MyPlugin'
Vue.use(MyPlugin)
用处
Myplugin.install = function(Vue,options){ 1,全局方法 Vue.myGlobalMethod = function(){} 2,全局自定义指令 Vue.directive('my-directive',{}) 3,全局mixin Vue.mixin({ created(){} }) 4,实例方法 Vue.prototype.$myMethod = function(){} }