docs(ComponentExample): add iframe prop

This commit is contained in:
Benjamin Canac
2024-12-11 12:13:37 +01:00
parent 52e2a4d68f
commit a0b8b93a5a
2 changed files with 11 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ const name = route.params.slug?.[0]
</script>
<template>
<div class="p-4 flex flex-col justify-center h-screen overflow-auto">
<component :is="name" />
<div class="flex flex-col justify-center items-center h-screen">
<component :is="name" v-bind="route.query" />
</div>
</template>