You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.5 KiB
Vue

2 years ago
<template>
2 years ago
<div class="wrapper">
<v-head></v-head>
<!-- <v-sidebar></v-sidebar> -->
<div class="content-box">
<!-- <v-tags></v-tags> -->
<div class="content">
<transition name="move" mode="out-in">
<keep-alive :include="tagsList">
<router-view></router-view>
</keep-alive>
</transition>
<el-backtop target=".content"></el-backtop>
</div>
2 years ago
</div>
2 years ago
</div>
2 years ago
</template>
<script>
2 years ago
import vHead from "./Header.vue";
2 years ago
//import vSidebar from './Sidebar.vue';
2 years ago
// import vTags from './Tags.vue';
import bus from "./bus";
2 years ago
export default {
2 years ago
data() {
return {
tagsList: [],
collapse: false,
};
},
components: {
vHead,
//vSidebar,
// vTags
},
created() {
bus.$on("collapse-content", (msg) => {
this.collapse = msg;
});
2 years ago
2 years ago
// 只有在标签页列表里的页面才使用keep-alive即关闭标签之后就不保存到内存中了。
bus.$on("tags", (msg) => {
let arr = [];
for (let i = 0, len = msg.length; i < len; i++) {
msg[i].name && arr.push(msg[i].name);
}
this.tagsList = arr;
});
},
2 years ago
};
</script>
<style lang="less">
.content-box {
2 years ago
position: absolute;
left: 0px;
right: 0;
top: 70px;
bottom: 0;
//padding-bottom: 30px;
-webkit-transition: left 0.3s ease-in-out;
transition: left 0.3s ease-in-out;
background: @background-color-base;
.content {
width: 100%;
height: 100%;
//padding: 10px;
overflow-y: auto;
box-sizing: border-box;
}
2 years ago
}
</style>