AppMain.vue 560 Bytes
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-03-22 10:23:46
-->
<template>
  <section class="app-main">
    <transition name="fade-transform" mode="out-in">
      <router-view />
    </transition>
  </section>
</template>
<script>
export default {
  name: 'AppMain',
  computed: {
    key () {
      return this.$route.path
    }
  }
}
</script>
<style lang="scss" scoped>
.app-main {
  height: calc(100vh - 74px);
  overflow-x: hidden;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  background: #EAEBF0;
  padding: 15px;
}
</style>