easyai-mfe-demo/host/components/HostComponent.vue
2024-12-21 07:53:23 +07:00

13 lines
244 B
Vue

<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>