Vue插件

功能:用于增强Vue

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

定义插件:

  对象.install = function (Vue,options){          

       //1.全局过滤器

        Vue.filter(.....)

       //2.添加全局指令

        Vue.directive(.....)

        //3.配置全局混入(合)

        Vue.mixin(.....)

        //4.添加实例方法

        Vue.prototype.$myMethod = function (){.....}

        Vue.prototype.$myProperty = xxx

}

使用插件:Vue.use()

main.js

/*该文件是整个项目的入口文件 */
//引入Vue
import Vue from 'vue'
//引入App组件,它是所有组件的父组件
import App from './App.vue'
//引入插件
import plugins from './plugins'
//关闭vue的生产提示
Vue.config.productionTip = false

Vue.use(plugins)
new Vue({
  el: '#app',
  //将App组件放入容器中
  render: h => h(App),
})

plugins.js

export default{
    install(Vue) {
        //全局过滤器
        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()
            },
            ipdate(element, binding) {
                element.value = binding.value
            }
        })

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

        //给Vue原型上添加一个方法(vm和vc就都能用了)
        Vue.prototype.hello = ()=>{alert('你好啊')}
    }
}

Student.vue

<template>
  <div>
    <h2>学生姓名:{{ name }}</h2>
    <h2>学生性别:{{ sex }}</h2>
    <input type="text" v-fbind:value="name">
  </div>
</template>

<script>
//引入一个hunhe

export default {
  name: "Student",
  data() {
    return {
      name: "张三",
      sex: "男",
    };
  }
}
</script>

School.js

<template>
  <div>
    <h2>学生姓名:{{ name }}</h2>
    <h2>学生性别:{{ sex }}</h2>
    <input type="text" v-fbind:value="name">
  </div>
</template>

<script>
//引入一个hunhe

export default {
  name: "Student",
  data() {
    return {
      name: "张三",
      sex: "男",
    };
  }
}
</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值