12 lines
402 B
Vue
12 lines
402 B
Vue
<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>
|