1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
| <template>
| <el-container class="home-container">
| <el-header>
| <div>
| <img src="../../assets/head.png" alt="" />
| <span>后台管理系统</span>
| </div>
| <el-button type="info" @click="logout">退出</el-button>
| </el-header>
| <el-container>
| <el-main>
| <router-view></router-view>
| </el-main>
| </el-container>
| </el-container>
| </template>
|
| <script>
| export default {
| data() {
| return {
| }
| },
| created() {
| },
| methods: {
| logout() {
| //清空token
| window.sessionStorage.clear()
| //跳转到登录页
| this.$router.push('/login')
| },
| }
| }
| </script>
|
| <style lang="less" scoped>
| .home-container {
| height: 100%;
| }
| .el-header {
| background-color: rgb(55, 61, 63);
| display: flex;
| justify-content: space-between;
| padding-left: 0;
| align-items: center;
| color: #fff;
| font-size: 20px;
| > div {
| display: flex;
| justify-content: center;
| align-items: center;
| span {
| margin-left: 15px;
| }
| }
| }
| .el-main {
| background-color: rgb(233, 237, 240);
| }
|
| .iconfont {
| margin-right: 10px;
| }
| </style>
|
|