feat(All):Initial

This commit is contained in:
2025-10-04 23:36:07 +08:00
commit 2b4e5d2668
1321 changed files with 415958 additions and 0 deletions
@@ -0,0 +1,41 @@
<template>
<n-tooltip trigger="hover">
<template #trigger>
<n-button quaternary @click="show = true">
<template #icon>
<n-icon>
<Settings />
</n-icon>
</template>
</n-button>
</template>
{{ t("setting.Setting") }}
</n-tooltip>
<n-modal v-model:show="show" display-directive="show" :z-index="zIndex" class="w-100 h-40vh">
<n-card size="small">
<SettingTabs />
</n-card>
</n-modal>
</template>
<script setup lang="ts">
import {ref,onMounted} from "vue";
import {Settings} from "@vicons/carbon";
import {t} from "@/language";
const show = ref(true);
const zIndex = ref<number | undefined>(-1);
onMounted(() => {
show.value = false;
zIndex.value = undefined;
});
</script>
<style scoped lang="less">
.n-tab-pane{
width: 100%;
height: 100%;
}
</style>