| 123456789101112131415161718192021222324 |
- <template>
- <router-view />
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue';
- export default defineComponent({
- name: 'app'
- });
- </script>
- <style lang="scss">
- ::selection {
- background: $doc-default-color;
- color: #fff;
- }
- #doc {
- background: #fff;
- height: 100%;
- width: 100%;
- display: flex;
- flex-direction: column;
- padding-top: $doc-header-height;
- }
- </style>
|