清空 (@momo4)vue3中<router-view>的使用 中发帖

## 文件夹结构
```
├── .gitignore
├── .vscode/
├── index.html
├── node_modules/
├── package-lock.json
├── package.json
├── public/
├── src/
│ ├── App.vue
│ ├── assets/
│ │ └── vue.svg
│ ├── components/
│ ├── main.ts
│ ├── router/
│ │ └── index.ts
│ ├── style.css
│ ├── views/
│ │ ├── About.vue
│ │ └── Home.vue
│ └── vite-env.d.ts
├── tsconfig.app.json
├── tsconfig.json
├──...