mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
26 lines
588 B
Vue
26 lines
588 B
Vue
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'setting-index'
|
|
})
|
|
|
|
import SettingBase from '@/views/setting/SettingBase.vue'
|
|
import SettingHttps from '@/views/setting/SettingHttps.vue'
|
|
|
|
const currentTab = ref('base')
|
|
</script>
|
|
|
|
<template>
|
|
<common-page show-footer>
|
|
<n-tabs v-model:value="currentTab" type="line" animated>
|
|
<n-tab-pane name="base" tab="基本">
|
|
<setting-base />
|
|
</n-tab-pane>
|
|
<n-tab-pane name="https" tab="HTTPS">
|
|
<setting-https />
|
|
</n-tab-pane>
|
|
</n-tabs>
|
|
</common-page>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|