Desktop.vue 451 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div>
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. // eslint-disable-next-line
  9. name: 'Desktop',
  10. components: {
  11. },
  12. data: function () {
  13. return {
  14. };
  15. },
  16. methods: {
  17. },
  18. };
  19. </script>
  20. <style>
  21. h1{
  22. font-size: 36px;
  23. border-bottom: 1px solid lightgray;
  24. padding-bottom: 10px;
  25. }
  26. h2 {
  27. font-size: 26px;
  28. border-bottom: 1px solid lightgray;
  29. padding-bottom: 10px;
  30. }
  31. </style>