File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -308,21 +308,21 @@ npm run build
308
308
│ ├── service // 数据交互统一调配
309
309
│ │ ├── getData.js // 获取数据的统一调配文件,对接口进行统一管理
310
310
│ │ └── 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
318
318
│ └── style
319
- │ ├── common.scss
320
- │ ├── mixin.scss
319
+ │ ├── common.scss // 公共样式文件
320
+ │ ├── mixin.scss // 样式配置文件
321
321
│ └── 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文件
326
326
.
327
327
328
328
56 directories, 203 files
You can’t perform that action at this time.
0 commit comments