feat: init

This commit is contained in:
ex_zhangwenlei@exiot.cmcc
2024-01-02 21:50:01 +08:00
commit df02b23b2d
69 changed files with 7333 additions and 0 deletions

21
src/layout/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
import Header from './Header/index.vue';
import Footer from './Footer/index.vue';
</script>
<template>
<div class="w-screen">
<header class="shadow-2xl head-container h-14">
<Header></Header>
</header>
<main class="main-container w-screen box-content min-h-[calc(100vh-10rem)]">
<router-view class="main-container-content"></router-view>
</main>
<footer class="w-screen footer-container">
<Footer></Footer>
</footer>
</div>
</template>
<style scoped lang="scss">
</style>