Blame view

src/layout1/components/AppMain.vue 458 Bytes
任超 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<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>
任超 committed
19 20 21 22 23 24 25
.app-main {
  height: calc(100vh - 84px);
  overflow-x: hidden;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  margin-right: 15px;
任超 committed
26
}
xiaomiao committed
27
</style>