抽离平台配置结果信息卡片

This commit is contained in:
yml
2026-05-04 11:27:31 +08:00
parent 8f6a72fa46
commit 58f25fad74
5 changed files with 62 additions and 60 deletions
@@ -0,0 +1,14 @@
<script setup lang="ts">
defineProps<{
label: string
value: string | number
}>()
</script>
<template>
<article class="result-card">
<span class="result-label">{{ label }}</span>
<strong>{{ value }}</strong>
<slot />
</article>
</template>