he wei
2024-11-08 106374208e6e7265db3c00ddfa948c39b7c252ea
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>