Blame view
src/layout/components/AppMain.vue
969 Bytes
80a28914e init |
1 2 3 |
<template> <section class="app-main"> <transition name="fade-transform" mode="out-in"> |
d7d9c38c2 auto commit the c... |
4 5 6 |
<keep-alive :include="cachedViews"> <router-view :key="key" /> </keep-alive> |
80a28914e init |
7 8 9 10 11 12 13 14 |
</transition> </section> </template> <script> export default { name: 'AppMain', computed: { |
d7d9c38c2 auto commit the c... |
15 16 17 |
cachedViews() { return this.$store.state.tagsView.cachedViews }, |
80a28914e init |
18 19 20 21 22 23 |
key() { return this.$route.path } } } </script> |
d7d9c38c2 auto commit the c... |
24 |
<style lang="scss" scoped> |
80a28914e init |
25 |
.app-main { |
d7d9c38c2 auto commit the c... |
26 |
/* 50= navbar 50 */ |
80a28914e init |
27 28 29 30 31 |
min-height: calc(100vh - 50px); width: 100%; position: relative; overflow: hidden; } |
d7d9c38c2 auto commit the c... |
32 |
|
80a28914e init |
33 34 35 |
.fixed-header+.app-main { padding-top: 50px; } |
d7d9c38c2 auto commit the c... |
36 37 38 39 40 41 42 43 44 45 46 |
.hasTagsView { .app-main { /* 84 = navbar + tags-view = 50 + 34 */ min-height: calc(100vh - 84px); } .fixed-header+.app-main { padding-top: 84px; } } |
80a28914e init |
47 48 49 50 51 52 53 54 55 56 |
</style> <style lang="scss"> // fix css style bug in open el-dialog .el-popup-parent--hidden { .fixed-header { padding-right: 15px; } } </style> |