BasicLayout.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <global-layout>
  3. <transition name="page-transition">
  4. <keep-alive v-if="keepAlive">
  5. <router-view />
  6. </keep-alive>
  7. <router-view v-else />
  8. </transition>
  9. </global-layout>
  10. </template>
  11. <script>
  12. import GlobalLayout from '@/components/page/GlobalLayout'
  13. export default {
  14. name: 'BasicLayout',
  15. components: {
  16. GlobalLayout
  17. },
  18. data () {
  19. return {
  20. }
  21. },
  22. computed: {
  23. keepAlive () {
  24. return this.$route.meta.keepAlive
  25. }
  26. },
  27. methods: {
  28. },
  29. }
  30. </script>
  31. <style lang="scss">
  32. /*
  33. * The following styles are auto-applied to elements with
  34. * transition="page-transition" when their visibility is toggled
  35. * by Vue.js.
  36. *
  37. * You can easily play with the page transition by editing
  38. * these styles.
  39. */
  40. .page-transition-enter {
  41. opacity: 0;
  42. }
  43. .page-transition-leave-active {
  44. opacity: 0;
  45. }
  46. .page-transition-enter .page-transition-container,
  47. .page-transition-leave-active .page-transition-container {
  48. -webkit-transform: scale(1.1);
  49. transform: scale(1.1);
  50. }
  51. </style>