wanshenmean
8 小时以前 f288ccc545f8cc32bc922c96dfb3cab9a1f92ec6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
  <router-view />
</template>
 
<script setup lang="ts">
import { onMounted } from 'vue';
 
onMounted(() => {
  console.log('WMS Vben Admin App mounted');
});
</script>
 
<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html,
body,
#app {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
</style>