vue中的install方法使用
作者:牧杉-惊蛰
这篇文章主要介绍了vue中的install方法使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
一、语法
vue提供install可供我们开发新的插件及全局注册组件等
install方法第一个参数是vue的构造器
第二个参数是可选的选项对象
export default { install(Vue,option){ 组件 指令 混入 挂载vue原型 } }
二、注册组件
注册单个组件
- 全局自定义指令
export default{ install(Vue){ Vue.directive('pre',{ inserted(button,bind){ button.addEventListener('click',()=>{ if(!button.disabled){ button.disabled = true; setTimeout(()=>{ button.disabled = false },1000) } }) } }) } }
- 在main.js跟注册组件一样
import pre from '@/aiqi';//引入 Vue.use(pre);//注册
注册多个组件
- 在install()方法中挂载组件
import update from './update/index.vue';//引入组件 import ImageUpload from './ImageUpload/ImageUpload.vue';//引入组件 import ScreenFull from './ScreenFull';//引入组件 import ThemePicker from './ThemePicker';//引入组件 import TagsView from './TagsView';//引入组件 export default { install(Vue) { Vue.component('update', update);//注册组件 Vue.component('ImageUpload', ImageUpload);//注册组件 Vue.component('ScreenFull', ScreenFull);//注册组件 Vue.component('ThemePicker', ThemePicker);//注册组件 Vue.component('TagsView', TagsView);//注册组件 } }
- 在main.js中直接用引用并Vue.use进行注册
import Component from '@/components';//引入那个挂载的文件 Vue.use(Component);//注册
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。