App.vue 535 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <page-header></page-header>
  3. <router-view />
  4. </template>
  5. <script>
  6. import PageHeader from "@/components/PageHeader.vue";
  7. export default {
  8. components: {
  9. PageHeader,
  10. },
  11. setup() {},
  12. };
  13. </script>
  14. <style>
  15. #app {
  16. font-family: Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. }
  22. nav {
  23. padding: 30px;
  24. }
  25. nav a {
  26. font-weight: bold;
  27. color: #2c3e50;
  28. }
  29. nav a.router-link-exact-active {
  30. color: #42b983;
  31. }
  32. </style>