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.

45 lines
858 B

<template>
<div class="siteSetting-wrap">
<RankingLeftMenu />
<!-- 主内容区域 -->
<main class="main-content" ref="scrollContainer">
<router-view></router-view>
<Footer></Footer>
</main>
</div>
</template>
<script>
import Footer from '@/components/Footer.vue';
import RankingLeftMenu from '@/components/super/RankingLeftMenu.vue'
export default {
// 站点设置
name: '',
props: [''],
components: {
Footer,
1 month ago
RankingLeftMenu,
},
data() {
return {
path:''
}
},
mounted(){
this.path =this.$route.path;
},
methods: {
}
}
</script>
<style scoped lang="scss">
.siteSetting-wrap {
display: flex;
height: 100%;
}
.main-content {
flex: 1;
padding: 12px;
overflow-y: auto;
}
</style>