mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 08:42:15 +01:00
16 lines
389 B
Vue
16 lines
389 B
Vue
<script setup lang="ts">
|
|
import type { TabsRootEmits, TabsRootProps } from 'reka-ui';
|
|
import { TabsRoot, useForwardPropsEmits } from 'reka-ui';
|
|
|
|
const props = defineProps<TabsRootProps>();
|
|
const emits = defineEmits<TabsRootEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<TabsRoot v-bind="forwarded">
|
|
<slot />
|
|
</TabsRoot>
|
|
</template>
|