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
300 B

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. <div>
  6. <router-view></router-view>
  7. </div>
  8. <ErrorModal />
  9. <StackInfoModal />
  10. </template>
  11. <style>
  12. html,
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. box-sizing: border-box;
  17. }
  18. </style>