mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-16 14:43:43 +08:00
14 lines
403 B
Vue
14 lines
403 B
Vue
<template>
|
|
<hover-container class="w-40px h-full" tooltip-content="项目配置" placement="bottom-end" @click="openSettingDrawer">
|
|
<icon-mdi-light-cog class="text-16px" />
|
|
</hover-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useAppStore } from '@/store';
|
|
import { HoverContainer } from '@/components';
|
|
|
|
const { openSettingDrawer } = useAppStore();
|
|
</script>
|
|
<style scoped></style>
|