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.
32 lines
519 B
32 lines
519 B
<template>
|
|
<el-container>
|
|
<el-header>
|
|
<div class="top">
|
|
<Navbar />
|
|
</div>
|
|
</el-header>
|
|
<el-main>
|
|
<router-view></router-view>
|
|
</el-main>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
// import { ref } from 'vue';
|
|
// import Navbar from '../components/navbar.vue';
|
|
|
|
// const activeIndex = ref('1');
|
|
|
|
export default {};
|
|
</script>
|
|
<style>
|
|
.el-main {
|
|
padding: 5rem 12rem;
|
|
/* background-color: #ff6700; */
|
|
overflow: hidden;
|
|
}
|
|
.top {
|
|
padding: 5rem 10rem;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|