Files
simrsx-fe/app/components/pub/ui/aspect-ratio/AspectRatio.vue
T
2025-08-07 14:45:37 +07:00

13 lines
257 B
Vue

<script setup lang="ts">
import type { AspectRatioProps } from 'radix-vue'
import { AspectRatio } from 'radix-vue'
const props = defineProps<AspectRatioProps>()
</script>
<template>
<AspectRatio v-bind="props">
<slot />
</AspectRatio>
</template>