You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
510 B

<template>
<Header />
<main class="main-wrap">
<div class="content">
<router-view></router-view>
</div>
</main>
<Footer />
<el-backtop :right="50" :bottom="70" :visibility-height="100" />
</template>
<script setup>
import Header from '@/components/Header.vue'
import Footer from '@/components/Footer.vue'
</script>
<style lang="scss" scoped>
.main-wrap {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0;
.content {
width: 65%;
}
}
</style>