now the app is responsive for desktop

This commit is contained in:
2024-03-08 14:59:20 +01:00
parent 1d7c55f773
commit 4618db3aad
11 changed files with 261 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
import { DialogTrigger, type DialogTriggerProps } from 'radix-vue'
const props = defineProps<DialogTriggerProps>()
</script>
<template>
<DialogTrigger v-bind="props">
<slot />
</DialogTrigger>
</template>