Vue中如何在有传参的情况下传入默认参数event

<el-button type='primary' @click='handleSearch("kkk",$event)'>我是默认参数</el-button>

点击查看代码
handleSearch(val,e){
	if(e){
		/*默认参数*/
	}
}

想要在传递参数的基础上添加默认参数,在vue中要使用$event来代替

posted @ 2023-11-13 16:43  布偶123  阅读(26)  评论(0编辑  收藏  举报