贡献
交流
关于
简体中文
Appearance
双击触发事件
双击我
<script setup lang="ts"> const handle = () => { window.alert('触发了事件') } </script> <template> <button v-doubleClick="handle">双击我</button> </template>