648540858
2020-11-23 14003b98053b2b48076d0a7ab08723f9ead88000
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
<template>
    <div id="UiHeader">
        <el-menu router :default-active="this.$route.path" background-color="#545c64" text-color="#fff" active-text-color="#ffd04b" mode="horizontal">
            <el-menu-item index="/">控制台</el-menu-item>
            <el-menu-item index="/videoList">设备列表</el-menu-item>
             <el-menu-item index="/parentPlatformList/15/1">国标级联</el-menu-item>
            <el-menu-item style="float: right;" @click="loginout">退出</el-menu-item>
        </el-menu>
    </div>
</template>
 
<script>
export default {
    name: "UiHeader",
    methods:{
 
          loginout(){
            // 删除cookie,回到登录页面
            this.$cookies.remove("session");
            this.$router.push('/login');
        },
    }
}
 
</script>