前端与移动开发之vue-day1(5)

自定义指令
自定义全局和局部的 自定义指令:

// 自定义全局指令 v-focus,为绑定的元素自动获取焦点:

   Vue.directive('focus', {

     inserted: function (el) { // inserted 表示被绑定元素插入父节点时调用

       el.focus();

     }

   });

   // 自定义局部指令 v-color 和 v-font-weight,为绑定的元素设置指定的字体颜色 和 字体粗细:

     directives: {

       color: { // 为元素设置指定的字体颜色

         bind(el, binding) {

           el.style.color = binding.value;

         }

       },

       'font-weight': function (el, binding2) { // 自定义指令的简写形式,等同于定义了 bind 和 update 两个钩子函数

         el.style.fontWeight = binding2.value;

       }

     }
自定义指令的使用方式:

<input type="text" v-model="searchName" v-focus v-color="'red'" v-font-weight="900">
Vue 1.x 中 自定义元素指令【已废弃,了解即可】

Vue.elementDirective('red-color', {
  bind: function () {
    this.el.style.color = 'red';
  }
});
使用方式:

<red-color>1232</red-color>

转载于:https://blog.51cto.com/13517854/2316811

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值