当前位置: 首页 > 文档资料 > Vue.js 教程 >

3.2.4 函数简写

优质
小牛编辑
128浏览
2023-12-01

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

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