多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
396 B

<script setup lang="ts">
import type { WithClassAsProps } from './interface'
const props = defineProps<WithClassAsProps>()
</script>
<template>
<div
role="group"
aria-roledescription="slide"
:class="{
[props.class]: props.class,
}"
class="min-w-0 shrink-0 flex justify-center items-center embla__slide h-full grow-0 basis-full"
>
<slot />
</div>
</template>