mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 修改文件建构
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import GoThemeSelect from './index.vue';
|
||||
|
||||
export { GoThemeSelect };
|
||||
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<n-button quaternary @click="changeTheme" title="主题">
|
||||
<n-icon size="20" :depth="1">
|
||||
<moon-icon v-if="designStore.darkTheme"></moon-icon>
|
||||
<sunny-icon v-else></sunny-icon>
|
||||
</n-icon>
|
||||
</n-button>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { useDesignStore } from '@/store/modules/designStore/designStore'
|
||||
import { setHtmlTheme } from '@/utils'
|
||||
import { icon } from '@/plugins'
|
||||
const { MoonIcon, SunnyIcon } = icon.ionicons5
|
||||
const designStore = useDesignStore()
|
||||
|
||||
// 改变样式
|
||||
const changeTheme = () => {
|
||||
designStore.changeTheme()
|
||||
setHtmlTheme()
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user