贡献
交流
关于
简体中文
Appearance
长按元素时触发事件
长按一段时间
<script setup lang="ts"> const handle = () => { window.alert('长按触发') } </script> <template> <button v-longpress:1000="handle">长按一段时间</button> </template>