‘chen.home’ 04cea2907d feat(components): 增加头部的操作按钮
BREAKING CHANGE:
黑暗模式、全屏、通知、设置、github、用户中心
2022-08-11 22:45:58 +08:00

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>