mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
19 lines
460 B
Vue
19 lines
460 B
Vue
<template>
|
|
<n-tooltip placement="bottom" trigger="hover">
|
|
<template #trigger>
|
|
<div class="hover:bg-hex-F3F4F6 hover:shadow-inner h-full px-4 flex-center cursor-pointer" @click="openNotice">
|
|
<e-icon icon="icon-park-outline:remind" />
|
|
</div>
|
|
</template>
|
|
<span>消息通知</span>
|
|
</n-tooltip>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const openNotice = () => {
|
|
console.log('消息通知');
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|