eHandyTech/layouts/default.vue
2021-06-27 14:52:55 +07:00

15 lines
193 B
Vue

<template>
<div>
<the-header />
</div>
</template>
<script>
import TheHeader from '@/components/templates/TheHeader.vue'
export default {
components: {
TheHeader
}
}
</script>