欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

相关标签: v