vue - 自定义指令
Posted 小太阳wy927
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue - 自定义指令相关的知识,希望对你有一定的参考价值。
我们都知道v-for、v-html、等等都是指令:扩展html 语法
自定义指令:
属性指令
Vue.deirctive(指令名称,function(){
this.el ==>原生的dom元素
})
<div id="box"> <span v-red>1222</span> </div> <script> Vue.directive(‘red‘,function(){ this.el.style.background="red" }); new Vue({ el:"#box", data:{} }) </script>
或者用参数的方法
<div id="box"> <span v-red="‘blue‘">1222</span> </div> <script> Vue.directive(‘red‘,function(color){ this.el.style.background=color }); new Vue({ el:"#box", }) </script>
指令名称: v-red ===> red
需要注意的必须以v-开头
自定义元素的指令(用处不是很大)
Vue.elementDirecitive(“zns-red”,{
bind:function(){
this.el.style.background="red";
}
})
<div id="box"> <zns-red>1222</zns-red> </div> <script> Vue.elementDirective(‘zns-red‘,{ bind:function(){ this.el.style.background=‘red‘ } }); new Vue({ el:"#box", }) </script>
以上是关于vue - 自定义指令的主要内容,如果未能解决你的问题,请参考以下文章