lixuliang
2024-04-18 b5c4921d0828500379502a916a2ccf2d9d4acc96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <router-view />
</template>
 
<script>
import Index from "./components/index";
export default {
  name: "App",
  components: {
    Index,
  },
};
</script>
 
<style>
</style>