12 lines
211 B
Vue
12 lines
211 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import Header from './components/Header.vue'
|
||
|
|
import Main from './components/Main/index.vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="h-full">
|
||
|
|
<Header />
|
||
|
|
<Main />
|
||
|
|
</div>
|
||
|
|
</template>
|