25 lines
407 B
Vue
25 lines
407 B
Vue
<script setup lang="ts">
|
|
defineOptions({
|
|
name: 'SettingItem',
|
|
})
|
|
|
|
defineProps<Props>()
|
|
|
|
interface Props {
|
|
/** Label */
|
|
label: string
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full flex-y-center justify-between">
|
|
<div class="flex-y-center">
|
|
<span class="pr-8px text-base-text">{{ label }}</span>
|
|
<slot name="suffix" />
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|