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.
47 lines
726 B
47 lines
726 B
4 months ago
|
<template>
|
||
|
<el-container>
|
||
|
<el-header class="appNav">
|
||
|
44
|
||
|
</el-header>
|
||
|
<el-main class="appMain">
|
||
|
<router-view />
|
||
|
</el-main>
|
||
|
<el-footer class="appFooter">
|
||
|
55
|
||
|
</el-footer>
|
||
|
</el-container>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "basic",
|
||
|
components: {},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
watch: {},
|
||
|
computed: {},
|
||
|
async mounted() { },
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
<style scoped lang="scss">
|
||
|
.appNav {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.appMain {
|
||
|
height: calc(100vh - 105px);
|
||
|
padding: 0;
|
||
|
overflow-y: auto;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
.appFooter {
|
||
|
height: 45px;
|
||
|
//background-color:$blue-color;
|
||
|
background-color: #f7f7f7;
|
||
|
color: rgba(99, 99, 99, 0.7);
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|