mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
16 lines
387 B
Vue
16 lines
387 B
Vue
<script setup lang="ts">
|
|
import type { SelectRootEmits, SelectRootProps } from "radix-vue";
|
|
import { useForwardPropsEmits } from "radix-vue";
|
|
|
|
const props = defineProps<SelectRootProps>();
|
|
const emits = defineEmits<SelectRootEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<SelectRoot v-bind="forwarded">
|
|
<slot />
|
|
</SelectRoot>
|
|
</template>
|