App.vue 277 B

1234567891011121314151617181920
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "app",
  9. };
  10. </script>
  11. <style lang="scss">
  12. #app {
  13. position: absolute;
  14. top: 0;
  15. width: 100%;
  16. height: 100%;
  17. background: rgba(6, 37, 66, 1);
  18. }
  19. </style>