mirror of
https://github.com/ZeroCatDev/ClassworksKV.git
synced 2025-10-22 02:03:11 +00:00
15 lines
293 B
Vue
15 lines
293 B
Vue
<script setup>
|
|
import { SelectGroup } from "reka-ui";
|
|
|
|
const props = defineProps({
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<SelectGroup data-slot="select-group" v-bind="props">
|
|
<slot />
|
|
</SelectGroup>
|
|
</template>
|