App.vue 453 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="fm-design-container">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app',
  9. methods: {
  10. handleHome () {
  11. this.$router.push({path: '/'})
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. html,body{
  18. height: 100%;
  19. }
  20. html.dark{
  21. body{
  22. background: #141414;
  23. }
  24. }
  25. #app {
  26. min-height: 100%;
  27. height: 100%;
  28. padding: 10px;
  29. }
  30. .fm-design-container{
  31. min-height: 100%;
  32. height: 100%;
  33. }
  34. </style>