🚧 WIP(custom): optimzie setting page and add several custom components

This commit is contained in:
Kuingsmile
2026-01-22 11:52:32 +08:00
parent 8357d3acb5
commit d997348c3a
24 changed files with 1310 additions and 1566 deletions

View File

@@ -0,0 +1,11 @@
<template>
<div class="relative rounded-lg border border-border bg-bg-secondary shadow-sm" :class="p1 ? 'p-1' : 'p-4'">
<slot></slot>
</div>
</template>
<script setup lang="ts">
const { p1 = false } = defineProps<{
p1?: boolean
}>()
</script>