App.vue 393 B

123456789101112131415161718192021222324
  1. <template>
  2. <router-view />
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent } from 'vue';
  6. export default defineComponent({
  7. name: 'app'
  8. });
  9. </script>
  10. <style lang="scss">
  11. ::selection {
  12. background: $doc-default-color;
  13. color: #fff;
  14. }
  15. #doc {
  16. background: #fff;
  17. height: 100%;
  18. width: 100%;
  19. display: flex;
  20. flex-direction: column;
  21. padding-top: $doc-header-height;
  22. }
  23. </style>