Vue 指令 v-on 事件:参数 .修改器
程序员文章站
2022-05-15 18:18:13
...
<!--阻止冒泡-->
<button @click.stop="toggle">切换页面</button>
<!--键盘事件-->
<input type="text" @keydown.enter="keydowm">
自定义事件:自定义事件的参数是由子组件发射过来的
<template>
<div>
<componentA @my-event="fromChild"></componentA> <!--调用组件-->
</div>
</template>
组件之间的通讯,请看:https://blog.csdn.net/weixin_37631005/article/details/80233593