27 lines
729 B
Vue
27 lines
729 B
Vue
<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>
|
|
|