贡献
交流
关于
简体中文
Appearance
只触发一次回调
只触发一次
<script setup lang="ts"> const handler = () => { window.alert('Hello!') } </script> <template> <button v-onOnce:click="handler">只触发一次</button> </template>