• Vue学习笔记【14】——自定义指令


    1.自定义全局和局部(私有)自定义指令

     // 自定义全局指令 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;
     ​
             }
     ​
           } ​

    2.自定义指令的使用方式

    <input type="text" v-model="searchName" v-focus v-color="'red'" v-font-weight="900">
    

    3.Vue 1.x 中 自定义元素指令【已废弃,了解即可】

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

    使用方式:

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

    4.函数简写

    在很多时候,你可能想在 bindupdate 时触发相同行为,而不关心其它的钩子。比如这样写:

     Vue.directive('color-swatch', function (el, binding) {
       el.style.backgroundColor = binding.value
     })
    

      

     

  • 相关阅读:
    进程DLL注入
    静态链接库LIB
    利用MoveFileEx实现程序的隐藏、自启动与自删除
    QueueUserApc实现DLL注入的测试
    简单说说SSDT
    ural 1521. War Games 2 约瑟夫环 SBT实现
    次小生成树 (附:poj1679)
    hoj 1138 LC Display
    hoj 3029 Dictionary 模拟队列
    hoj 2578 Super_Stack 模拟栈
  • 原文地址:https://www.cnblogs.com/superjishere/p/11909739.html
Copyright © 2020-2023  润新知