全局配置

This commit is contained in:
gary.fu
2023-12-29 18:19:01 +08:00
parent 4b75e5713c
commit aeb759c5c0
6 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<script setup>
import {useGlobalConfigStore} from '@/stores/GlobalConfigStore'
const globalConfigStore = useGlobalConfigStore()
</script>
<template>
<el-drawer v-model="globalConfigStore.isShowSettings" direction="rtl">
<template #header>
<strong>{{ $t('common.label.settings') }}</strong>
</template>
<template #default>
<div>
</div>
</template>
<template #footer>
<div style="flex: auto">
<el-button type="primary" @click="globalConfigStore.changeShowSettings(false)">{{$t('common.label.close')}}</el-button>
</div>
</template>
</el-drawer>
</template>
<style scoped>
</style>