mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-27 05:36:43 +08:00
18 lines
329 B
Vue
18 lines
329 B
Vue
<script setup lang="ts">
|
|
import ThemeSchema from './modules/theme-schema.vue';
|
|
import ThemeColor from './modules/theme-color.vue';
|
|
|
|
defineOptions({
|
|
name: 'AppearanceSettings'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-col-stretch gap-16px">
|
|
<ThemeSchema />
|
|
<ThemeColor />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|