mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 19:49:16 +01:00
feat: ✨ Add profile viewer
This commit is contained in:
parent
a6c5093cf5
commit
1194bc4ffb
19 changed files with 466 additions and 47 deletions
11
components/ui/aspect-ratio/AspectRatio.vue
Normal file
11
components/ui/aspect-ratio/AspectRatio.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<script setup lang="ts">
|
||||
import { AspectRatio, type AspectRatioProps } from "radix-vue";
|
||||
|
||||
const props = defineProps<AspectRatioProps>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<AspectRatio v-bind="props">
|
||||
<slot />
|
||||
</AspectRatio>
|
||||
</template>
|
||||
1
components/ui/aspect-ratio/index.ts
Normal file
1
components/ui/aspect-ratio/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export { default as AspectRatio } from "./AspectRatio.vue";
|
||||
Loading…
Add table
Add a link
Reference in a new issue