Files
NSG_PORTAL_V2/layouts/default.vue
T
MoreStrive 2aa5607c48 init
2024-05-30 18:06:50 +07:00

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>