mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-29 22:56:41 +08:00
21 lines
391 B
Vue
21 lines
391 B
Vue
<script setup lang="ts">
|
|
import { useAppStore } from '@/store/modules/app';
|
|
import { $t } from '@/locales';
|
|
|
|
defineOptions({
|
|
name: 'ThemeButton'
|
|
});
|
|
|
|
const appStore = useAppStore();
|
|
</script>
|
|
|
|
<template>
|
|
<ButtonIcon
|
|
icon="majesticons:color-swatch-line"
|
|
:tooltip-content="$t('icon.themeConfig')"
|
|
@click.stop="appStore.openThemeDrawer"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped></style>
|