Fix ui prop reference in UiDrawer component

This commit is contained in:
2025-11-08 20:28:39 +01:00
parent 6187e32f89
commit af61972342

View File

@ -26,5 +26,7 @@ import type { DrawerProps } from '@nuxt/ui'
* Wrapper around UDrawer that automatically applies safe area insets for mobile devices.
* Passes through all props and slots to UDrawer.
*/
defineProps</* @vue-ignore */ DrawerProps>()
const props = defineProps</* @vue-ignore */ DrawerProps>()
const { ui } = toRefs(props)
</script>