vue–自定義指令

  • 2019 年 12 月 16 日
  • 筆記

[自定義指令]:https://cn.vuejs.org/v2/guide/custom-directive.html

  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;  ​          }  ​        }  ​
  1. 自定義指令的使用方式:
​  <input type="text" v-model="searchName" v-focus v-color="'red'" v-font-weight="900">  ​