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.

37 lines
773 B

<template>
<Header />
<main class="main-wrap">
<div class="content">
<el-row :gutter="20">
<el-col :span="17">
<router-view></router-view>
</el-col>
<el-col :span="7"
><div class="grid-content ep-bg-purple" />
<UserInfo />
</el-col>
</el-row>
</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'
import UserInfo from './components/UserInfo.vue'
</script>
<style lang="scss" scoped>
.main-wrap {
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0;
.content {
width: 75%;
}
}
</style>