charles
2024-05-20 0d91757d82f4cfd1586ab39cbe37f12d739ddc43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>
 
<script>
 
export default {
  name: 'app',
}
</script>
 
<style>
  body{
    margin: 0px;
    padding: 0px;
  }
</style>