14 lines
338 B
Vue
14 lines
338 B
Vue
<template>
|
|
<SelectGroup :disabled="disabled" class="">
|
|
<SelectLabel class="">{{ label }}</SelectLabel>
|
|
<slot></slot>
|
|
</SelectGroup>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { SelectGroup } from 'radix-vue';
|
|
const { label, disabled = false } = defineProps<{
|
|
label: string
|
|
disabled?: boolean
|
|
}>();
|
|
</script> |