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

27 lines
799 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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="openSetting">
<e-icon icon="icon-park-outline:setting-two" />
<n-drawer v-model:show="drawerActive" :width="400">
<n-drawer-content title="系统设置">这是系统设置但是暂时还没有内容</n-drawer-content>
</n-drawer>
</div>
</template>
<span>设置</span>
</n-tooltip>
</template>
<script setup lang="ts">
// import { useApp } from '@/store';
import { ref } from 'vue';
// const appStore = useApp();
const drawerActive = ref(false);
const openSetting = () => {
drawerActive.value = !drawerActive.value;
};
</script>
<style scoped></style>