This commit is contained in:
antony
2024-12-20 22:58:41 +07:00
commit f438d49f55
18 changed files with 13792 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<template>
<div class="p-4 border rounded">
<h2 class="text-xl mb-2">Host Component</h2>
<p>This is a component from the host application</p>
</div>
</template>
<script setup>
defineComponent({
name: 'HostComponent'
})
</script>