This commit is contained in:
MoreStrive
2024-05-30 18:06:50 +07:00
parent 8ca31c6b18
commit 2aa5607c48
147 changed files with 5815 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
<template>
<Body class=" text-black max-w-screen max-w-full w-full overflow-x-hidden">
<!-- <Component :is="header[hostname]" /> -->
aaaa
<slot />
bbbb
<!-- <Component :is="footer[hostname]" /> -->
</Body>
</template>
<script setup>
// import { HeaderTTTC, Header, FooterTTTC, Footer } from './index'
// const header = {
// thitruongtaichinh: HeaderTTTC,
// stable: Header
// }
// const footer = {
// thitruongtaichinh: FooterTTTC,
// stable: Footer
// }
// const url = useRequestURL();
// let hostname = url.hostname.split('.')[0];
// if(hostname == "localhost") {
// hostname = "stable"
// }
</script>