贡献
交流
关于
简体中文
Appearance
经过元素触发回调
<script setup lang="ts"> const handler = () => { window.alert('鼠标经过') } </script> <template> <div v-hover="handler" :style="{ width: '200px', height: '200px', background: 'blue', borderRadius: '5px' }" > Hover </div> </template>