mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-11-23 16:56:46 +08:00
16 lines
254 B
Vue
16 lines
254 B
Vue
<script setup lang="ts">
|
|
import ThemePreset from './modules/theme-preset.vue';
|
|
|
|
defineOptions({
|
|
name: 'PresetSettings'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-col-stretch gap-16px">
|
|
<ThemePreset />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|