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