BasicLayout.vue 1.0 KB

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