de/core/frontend/src/layout/components/AppMain.vue
2023-08-24 17:34:35 +08:00

47 lines
737 B
Vue

<template>
<section class="app-main">
<transition
name="fade-transform"
mode="out-in"
>
<el-main class="ms-main-container">
<router-view :key="key" />
</el-main>
</transition>
</section>
</template>
<script>
export default {
name: 'AppMain',
computed: {
key() {
return this.$route.path
}
}
}
</script>
<style lang="scss" scoped>
.app-main {
height: 100%;
}
.fixed-header + .app-main {
padding-top: 50px;
}
.ms-main-container {
height: 100%;
padding: 0 !important;
}
</style>
<style lang="scss">
.el-popup-parent--hidden {
.fixed-header {
padding-right: 15px;
}
}
</style>