vue自定义指令的方法有哪些 vue自定义指令两种方式

主机教程 建站分享 2年前 (2022-11-24) 195次浏览

文章摘要:vue自定义指令的方法有哪些 vue自定义指令两种方式

在vue中自定义指令的方法有:语法:Vue.directive(id, definition);1.自定义全局 […]

在vue中自定义指令的方法有:语法:Vue.directive(id, definition);1.自定义全局指令;2.自定义私有指令;

在vue中自定义指令的方法有以下两种

vue自定义指令语法:

Vue.directive(id, definition)

1.自定义全局指令

Vue.directive('focus', {

     bind: function (el) { 

         el.focus()

     },

     inserted: function (el) { 

         el.focus()

     },

     updated: function () { 

     }

 });

2.自定义私有指令

directives: {

    'fontweight': {

        bind: function (el, bingding) {

            el.style.fontWeight = bingding.value;

        }

    },

    'fontsize': function (el, bingding) { 

        el.style.fontSize = parseInt(bingding.value) + 'px';

    }

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:vue自定义指令的方法有哪些 vue自定义指令两种方式
文章链接:http://www.7966.org/post/12299.html
转载请注明出处

喜欢 (0)