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.
39 lines
605 B
39 lines
605 B
<template>
|
|
<el-container>
|
|
<el-header>
|
|
<div class="top">
|
|
<Navbar />
|
|
</div>
|
|
</el-header>
|
|
<el-main>
|
|
<div class="bg-white p-6">
|
|
<router-view></router-view>
|
|
</div>
|
|
</el-main>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
// import { ref } from 'vue';
|
|
// import Navbar from '../components/navbar.vue';
|
|
|
|
// const activeIndex = ref('1');
|
|
|
|
export default {};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-header {
|
|
background: #00182e;
|
|
color: #fff;
|
|
}
|
|
.el-main {
|
|
padding: 1.6rem 12rem;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.top {
|
|
/* padding: 2rem 10rem; */
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|