ZhangXianQiang
2024-06-03 5eebeba2a160192d48344ab587e90faaf6135dd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <UserPanel></UserPanel>
  <div class="test"></div>
</template>
 
<script setup>
import UserPanel from './components/user-panel/index.vue';
 
</script>
 
<style lang="scss" scoped>
.test {
  height: 500px;
}
</style>