1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <script setup>
| import { RouterView } from "vue-router";
| </script>
|
| <template>
| <div class="p-root">
| <RouterView />
| </div>
| </template>
|
| <style scoped lang="less">
| .p-root {
| height: 100%;
| user-select: none;
| background: #002430;
| color: #fff;
| }
| </style>
|
|