Skip to content

v-hover

功能介绍

经过元素触发回调

示例

Hover

使用

typescript
<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>

Released under the MIT License.