A8000
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
314 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <script setup lang="ts">
  2. import { ErrorModal, StackInfoModal } from './components/dialogs';
  3. </script>
  4. <template>
  5. <router-view></router-view>
  6. <ErrorModal />
  7. <StackInfoModal />
  8. </template>
  9. <style>
  10. html,
  11. body {
  12. width: 100%;
  13. height: 100%;
  14. margin: 0;
  15. padding: 0;
  16. box-sizing: border-box;
  17. }
  18. </style>