mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 12:44:27 +08:00
17 lines
321 B
Vue
17 lines
321 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
message: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<n-tooltip :show-arrow="false" trigger="hover">
|
|
<template #trigger>
|
|
<icon-park-outline-help class="op-50 cursor-help" />
|
|
</template>
|
|
{{ props.message }}
|
|
</n-tooltip>
|
|
</template>
|