mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
13 lines
214 B
Vue
13 lines
214 B
Vue
<script setup lang="ts">
|
|
import { Slot } from 'reka-ui'
|
|
</script>
|
|
|
|
<template>
|
|
<Slot class="ui-only">
|
|
<slot name="ui" />
|
|
</Slot>
|
|
<Slot class="ui-pro-only">
|
|
<slot name="ui-pro" />
|
|
</Slot>
|
|
</template>
|