AppMain.vue 232 B

12345678910111213
  1. <template>
  2. <section class="app-main">
  3. <transition name="el-fade-in-linear" mode="out-in">
  4. <router-view></router-view>
  5. </transition>
  6. </section>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'AppMain',
  11. };
  12. </script>