├── babel.config.js // 配置文件
├── cypress.json
├── jest.config.js
├── package.json // 项目依赖描述文件
├── public // 静态内容
│ ├── favicon.ico
│ ├── img
│ │ └── icons
│ ├── index.html // 页面入口
│ └── robots.txt
├── README.md
├── src/ // 主要源文件目录
│ ├── App.vue // 根组件
│ ├── assets // 资源
│ │ └── logo.png
│ ├── components // 公共组件
│ │ └── HelloWorld.vue
│ ├── main.ts // js入口
│ ├── registerServiceWorker.ts
│ ├── router // 路由
│ │ └── index.ts
│ ├── shims-vue.d.ts
│ ├── store // 存储
│ │ └── index.ts
│ └── views // 视图组件
│ ├── AboutView.vue
│ ├── HelloView.vue
│ └── HomeView.vue
├── tests
│ ├── e2e
│ │ ├── plugins
│ │ │ └── index.js
│ │ ├── specs
│ │ │ └── test.js
│ │ └── support
│ │ ├── commands.js
│ │ └── index.js
│ └── unit
│ └── example.spec.ts
├── tsconfig.json
├── vue.config.js
└── yarn.lock
浙公网安备 33010602011771号