Vue

Vue自定义指令

2018-08-28  本文已影响16人  ChangLau

Vue 自定义指令

Vue.directive('focus', {
    // 当被绑定的元素插入到 DOM 中时……
    inserted: function (el) {
        // 聚焦元素
        el.focus()
    }
})
<input type="text" v-focus>
<div id="hook-arguments-example" v-demo:foo.a.b="message"></div>
// 局部定义指令
directives: {
    focus: {
        inserted: function (el, binding, vnode, oldVnode) {
            console.log(el)
            console.log(binding)
            console.log(vnode)
            console.log(oldVnode)
            // 聚焦元素
            el.focus()
        }
    },
    demo: {
        bind: function (el, binding, vnode) {
            var s = JSON.stringify
            el.innerHTML =
                'name: ' + s(binding.name) + '<br>' +
                'value: ' + s(binding.value) + '<br>' +
                'expression: ' + s(binding.expression) + '<br>' +
                'argument: ' + s(binding.arg) + '<br>' +
                'modifiers: ' + s(binding.modifiers) + '<br>' +
                'vnode keys: ' + Object.keys(vnode).join(', ')
        }

    }
}

Vue 指令生命周期钩子

Vue 指令生命周期钩子参数

bind update 触发行为

Vue.directive('color-swatch', function (el, binding) {
  el.style.backgroundColor = binding.value
})
上一篇 下一篇

猜你喜欢

热点阅读