- Moved `app.config.ts` to the `app` directory - Migrated `.vue` files and other assets to the `app` directory - Updated import paths to reflect the new file locations
11 lines
260 B
Vue
11 lines
260 B
Vue
<script setup lang="ts">
|
|
import { DropdownMenuGroup, type DropdownMenuGroupProps } from 'radix-vue'
|
|
|
|
const props = defineProps<DropdownMenuGroupProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuGroup v-bind="props">
|
|
<slot />
|
|
</DropdownMenuGroup>
|
|
</template>
|