This commit is contained in:
fengchuanhn@gmail.com
2026-05-15 19:08:03 +08:00
parent 28b2b4d686
commit 9d2c592127
9 changed files with 946 additions and 31 deletions

View File

@@ -0,0 +1,9 @@
<script setup>
defineProps({
step: { type: String, required: true },
});
</script>
<template>
<span class="step-badge">{{ step }}</span>
</template>