首页 > 其他分享 >v-on

v-on

时间:2023-10-07 21:26:23浏览次数:34  
标签: 函数 ...... methods 参数 事件 鼠标

1. v-on 作用:注册事件(注册事件 = 添加监听 + 提供处理逻辑)

2. 语法:

        ① v-on : 事件名 = "内联语句"            eg:<button v-on:click="count++"> 点我加一 </button>

        ② v-on : 事件名 = "methods中的函数名"   或   v-on : 事件名 = "methods中的函数名(参数1, 参数2, ......)"(传参形式)

        ③ @事件名 = "内联语句"   或   @事件名 = "methods中的函数名"    或   @事件名 = "methods中的函数名(参数1, 参数2, ......)"   (简写形式)

 

3.小知识点:1. click:点击事件(鼠标点击才触发)

                     2. mouseenter:鼠标划入事件(只要鼠标划过就触发)

标签:,函数,......,methods,参数,事件,鼠标
From: https://www.cnblogs.com/gagaya2/p/17747502.html

相关文章