vue中使用自定义指令和过滤器(全局、局部)





以上是局部自定义指令和过滤器。

1.局部自定义指令 :directives属性titleColor是做为对象去声明,使用时直接v-titlColor即可。

 directives:{
          'titleColor':{
              bind(el,binding,vnode){
                  el.style.color = 'blue'
              }
          }
        },

2.局部自定义过滤器:使用filters属性,第一种和第二种声明方式都可以去实现。

 filters:{
         /* "to-upcase":function (value) {
            return value.toUpperCase();
          },*/
          toUpcase(value){
              return value.toUpperCase();
          }
        }

 

你可能感兴趣的:(前端VUE)