闫增涛
2024-11-22 40b16e5fc85c445e0f21cfb75c10f6839fbacdfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="layoutBox">
    <RouterView />
  </div>
</template> 
 
<script setup lang="ts">
import { ref, reactive, watch } from 'vue'
import { useRouter, RouterView } from 'vue-router'
</script>
 
<style lang="less">
.layoutBox {
  width: 100%;
  height: 100%;
}
</style>