35 lines
489 B
Vue
35 lines
489 B
Vue
|
|
<!--前端模板-->
|
|
<template>
|
|
<div class="common-layout">
|
|
<el-container>
|
|
<el-header>
|
|
<nav-navigation1></nav-navigation1>
|
|
</el-header>
|
|
<el-main class="main">
|
|
<div class="container">
|
|
<router-view></router-view>
|
|
</div>
|
|
</el-main>
|
|
</el-container>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
<style scoped>
|
|
|
|
|
|
.main{
|
|
width: 100%;
|
|
height: calc(100vh - 60px);
|
|
background-color: #f3f3f4;
|
|
}
|
|
.container{
|
|
width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
</style>
|