App.vue 390 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <transition name="fade">
  3. <router-view></router-view>
  4. </transition>
  5. </template>
  6. <script>
  7. export default {
  8. }
  9. </script>
  10. <style>
  11. .dialog-footer{
  12. position: fixed;
  13. right: 36px;
  14. top: 120px;
  15. z-index: 999;
  16. }
  17. .my-title{
  18. font-size: 18px;
  19. padding-bottom: 20px;
  20. }
  21. .flow_region{
  22. width: 100% !important;
  23. height: 100% !important;
  24. margin: 0 !important;
  25. }
  26. </style>