0%
前言
算了,懒得写了,就这样吧。
Code
组件内写法
1 2 3 4 5 6 7 8 9 10 11 12
| <div v-tap="{methods: func, args: [1,2,3]}"></div>
directives: { tap(el, binding) { const handle = binding.method; const args = binding.args || []; handle.call(el, args); } }
|
突然没啥心情写了,就这样看吧,有空再补充。