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
+22
View File
@@ -0,0 +1,22 @@
<template>
<div class="p-4 border rounded bg-blue-50 sty1">
<h2 class="text-xl mb-2">Remote Component</h2>
<p>This component is exposed from the remote application</p>
</div>
</template>
<script setup>
defineComponent({
name: 'RemoteComponent'
})
onMounted(() => {
console.log('mounted')
})
</script>
<style>
.sty1 {
background: pink;
}
</style>