interview-answe icon indicating copy to clipboard operation
interview-answe copied to clipboard

199.[vue]Vue 事件绑定原理

Open webVueBlog opened this issue 4 years ago • 1 comments

[vue]

webVueBlog avatar Apr 21 '20 01:04 webVueBlog

理解: Vue 事件绑定分为两种:一是原生事件的绑定;二是组件的事件绑定。

原生dom事件绑定用 addEventListener 实现(普通元素的@click 与组件的@click.native) 组件自定义事件绑定采用 $on 方法实现 (组件的@click 单独处理)

webVueBlog avatar Apr 21 '20 01:04 webVueBlog