index.vue 377 B

1234567891011121314151617181920
  1. <template>
  2. <div class="test"> 位于主框架外的页面 </div>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent } from 'vue';
  6. export default defineComponent({});
  7. </script>
  8. <style scoped>
  9. .test {
  10. position: fixed;
  11. display: flex;
  12. width: 100%;
  13. height: 100%;
  14. justify-content: center;
  15. align-items: center;
  16. font-size: 50px;
  17. }
  18. </style>