17 lines
260 B
Vue
17 lines
260 B
Vue
![]() |
<template>
|
||
|
<div class="flex-y-center justify-between">
|
||
|
<span>{{ label }}</span>
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
interface Props {
|
||
|
/** 文本 */
|
||
|
label: string;
|
||
|
}
|
||
|
|
||
|
defineProps<Props>();
|
||
|
</script>
|
||
|
<style scoped></style>
|