zuozhengqing
2023-09-23 5a6358760daf6fc68dfbc9e5c2d431ec07c3b9cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <div id="app">
    <HomePage></HomePage>
  </div>
</template>
 
<script>
import HomePage from '@/components/home/HomePage.vue'
 
export default {
  name: 'App',
  components: {
    HomePage
  }
}
</script>
 
<style>
body{
  width: 100%;
}
</style>