update structure

This commit is contained in:
antony
2024-12-21 18:50:22 +07:00
parent a809901535
commit 955dd07c7f
15 changed files with 119 additions and 55 deletions
+1
View File
@@ -0,0 +1 @@
<template><div>about rmt</div></template>
+12
View File
@@ -0,0 +1,12 @@
<template>
<div class="rmt">
<h1>rmt/pages/contact/index.vue</h1>
<div>Contact index</div>
</div>
</template>
<script setup></script>
<style scoped>
.rmt {
background-color: antiquewhite;
}
</style>
+11
View File
@@ -0,0 +1,11 @@
<template>
<div>
<h1>rmt/pages/contact/properties.vue</h1>
<div>Contact prop</div>
</div>
</template>
<script setup>
definePageMeta({
name: "contact1"
})
</script>
+10
View File
@@ -0,0 +1,10 @@
<script setup lang="ts">
// import ContactRouter from "~/components/ContactRouter.vue"
</script>
<template>
<div class="container mx-auto p-4">
<h1 class="text-2xl font-bold mb-4">Nuxt 3 MFE Remote App</h1>
<!-- <ContactRouter /> -->
</div>
</template>