mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-09 20:57:17 +08:00
25 lines
580 B
Vue
25 lines
580 B
Vue
<template>
|
|
<div class="gi_page">
|
|
<a-card class="general-card" title="系统配置">
|
|
<a-tabs default-active-key="1" type="rounded">
|
|
<a-tab-pane key="1" title="基础配置">
|
|
<BasicSetting />
|
|
</a-tab-pane>
|
|
<a-tab-pane key="2" title="高级配置" disabled></a-tab-pane>
|
|
</a-tabs>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import BasicSetting from './components/BasicSetting.vue'
|
|
|
|
defineOptions({ name: 'Config' })
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
:deep(.arco-tabs-content) {
|
|
padding-top: 5px;
|
|
}
|
|
</style>
|