Files
NSG_PORTAL_V2/layouts/default.vue
T
2024-05-30 21:32:51 +07:00

25 lines
703 B
Vue

<template>
<Body class=" text-black max-w-screen max-w-full w-full overflow-x-hidden">
<!-- <Component :is="header[hostname]" /> -->
<slot />
<!-- <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>