Vue脚手架 - 插件

内容

  1. 作用:增强Vue

  2. 本质:包含install() 方法的一个对象,install的第一个参数是Vue原型对象,第二个以后的参数是插件使用者传递的数据

  3. 定义插件

    对象.install = function(Vue,options) {
        // 1.添加全局过滤器
        Vue.filter(...)
                   
    	// 2.添加全局指令
        Vue.directive(...)
        
        // 3.配置全局混入
        Vue.mixin(....)
        
        // 4.添加实例方法
        Vue.prototype.$myMethod = function(){...}
        Vue.prototype.$myProperty = xxx
    }
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
  4. 使用插件:Vue.use(..)

  5. 示例代码

export default {
	install(Vue,x,y,z){
		console.log(x,y,z)
		//全局过滤器
		Vue.filter('mySlice',function(value){
			return value.slice(0,4)
		})

		//定义全局指令
		Vue.directive('fbind',{
			//指令与元素成功绑定时(一上来)
			bind(element,binding){
				element.value = binding.value
			},
			//指令所在元素被插入页面时
			inserted(element,binding){
				element.focus()
			},
			//指令所在的模板被重新解析时
			update(element,binding){
				element.value = binding.value
			}
		})

		//定义混入
		Vue.mixin({
			data() {
				return {
					x:100,
					y:200
				}
			},
		})

		//给Vue原型上添加一个方法(vm和vc就都能用了)
		Vue.prototype.hello = ()=>{alert('你好啊')}
	}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

scoped样式

  1. 作用:让样式在局部生效,防止冲突
  2. 写法:<style scoped>