Vue API(directives) 自定义指令

Posted ZaraNet

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue API(directives) 自定义指令相关的知识,希望对你有一定的参考价值。

前言:除了vue的内置指令以外,我们可以定义自定义指令。内置指令表相见:https://www.cnblogs.com/ilovexiaoming/p/6840383.html

我们定义一个最简单的

<script>
export default {
  name: \'App\',
  data(){
    return{
      yanse:\'red\'
    }
  },
  // 所有自定义指令
  directives:{
    zzh(el,binding){
      console.log(el);
      console.log(binding);
      el.style=\'color:\'+binding.value;
    }
  }
}
</script>

 我们在这里定义了一个指令,用于改变字体的颜色,我们如何去调用我们自定义的指令,实际上你就可以当作是内置指令一样去调用它了!

 

给zzh绑定的值一定要是 具体的数据/state/computed,不可以直接绑定值。

其中el是绑定的这个dom,而binding里是一些源数据

 其中呢,我们不光可以去指定它的style,能干的事情还有很多,我们再去指定一下它的className,为了演示效果,我们引用一下animate.css,在main.js全局注册一下就好.

fadeInDown(el){
      el.className = \'animated fadeInDown\';
 }

 在dom标签上写上classname就ok了。

 

以上是关于Vue API(directives) 自定义指令的主要内容,如果未能解决你的问题,请参考以下文章

Vue自定义指令 directive

一起走进Vue.js——Vue.js的全局API

vue自定义指令directive

Vue2.x directive自定义指令

Vue.directive 自定义指令

vue 自定义指令directive