• 函数简写

    函数简写

    在很多时候,你可能想在 bindupdate 时触发相同行为,而不关心其它的钩子。比如这样写:

    1. Vue.directive('color-swatch', function (el, binding) {
    2. el.style.backgroundColor = binding.value
    3. })