Skip to content

Commit 80b0b7f

Browse files
committed
增加注释
1 parent 801519b commit 80b0b7f

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -308,21 +308,21 @@ npm run build
308308
│   ├── service // 数据交互统一调配
309309
│   │   ├── getData.js // 获取数据的统一调配文件,对接口进行统一管理
310310
│   │   └── tempdata // 开发阶段的临时数据
311-
│   ├── store
312-
│   │   ├── action.js
313-
│   │   ├── getters.js
314-
│   │   ├── index.js
315-
│   │   ├── modules
316-
│   │   ├── mutation-types.js
317-
│   │   └── mutations.js
311+
│   ├── store // vuex的状态管理
312+
│   │   ├── action.js // 配置actions
313+
│   │   ├── getters.js // 配置getters
314+
│   │   ├── index.js // 引用vuex,创建store
315+
│   │   ├── modules // store模块
316+
│   │   ├── mutation-types.js // 定义常量muations名
317+
│   │   └── mutations.js // 配置mutations
318318
│   └── style
319-
│   ├── common.scss
320-
│   ├── mixin.scss
319+
│   ├── common.scss // 公共样式文件
320+
│   ├── mixin.scss // 样式配置文件
321321
│   └── swiper.min.css
322-
│   ├── App.vue
323-
│   ├── main.js
324-
├── favicon.ico
325-
├── index.html
322+
│   ├── App.vue // 页面入口文件
323+
│   ├── main.js // 程序入口文件,加载各种公共组件
324+
├── favicon.ico // 图标
325+
├── index.html // 入口html文件
326326
.
327327
328328
56 directories, 203 files

0 commit comments

Comments
 (0)