明梦爽
2022-10-11 ce7eaf97c37e476849c002ed8c720b4615965cda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <div id="app">
    <!-- 路由占位符 -->
    <router-view></router-view>
  </div>
</template>
 
<script>
export default {
  name: 'app'
}
</script>
 
<style></style>