原文地址:Vue中的$event详解_violateer的博客-CSDN博客
<template> <button @click="getData($event)">按钮</button> </template> <script> export default { setup() { const getData = (e) => { console.log(e) } return { getData } } } </script>
原文:https://www.cnblogs.com/sangzs/p/14718433.html