初始提交:OCI 面板前端(含 GenAI 网关一期)

This commit is contained in:
Wang Defa
2026-07-09 15:31:29 +08:00
commit db45a669e3
135 changed files with 25220 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<script setup lang="ts">
/** 表单分组标题:≥ 5 字段或语义分段时使用,小标题 + 分隔线。 */
defineProps<{ title: string }>()
</script>
<template>
<div class="mt-5 mb-3 flex items-center gap-2.5 first:mt-0">
<span class="flex-none text-xs font-semibold tracking-wider text-ink-3">{{ title }}</span>
<span class="h-px flex-1 bg-line-soft"></span>
</div>
</template>