AppMain.vue 554 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <section class="app-main">
  3. <transition name="fade" mode="out-in">
  4. <!-- <router-view :key="key"></router-view> -->
  5. <keep-alive :include="cacheRouters">
  6. <router-view />
  7. </keep-alive>
  8. </transition>
  9. </section>
  10. </template>
  11. <script>
  12. export default {
  13. name: "AppMain",
  14. data() {
  15. return {
  16. cacheRouters: [
  17. "ExamManagement",
  18. "InvigilationDetail",
  19. "WarningManage",
  20. "OnlinePatrol",
  21. ],
  22. };
  23. },
  24. };
  25. </script>
  26. <style scoped>
  27. .app-main {
  28. padding: 30px;
  29. }
  30. </style>