You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
70 lines
1.9 KiB
5 months ago
|
```
|
||
|
.
|
||
|
├── common #演示需要的一些文件
|
||
|
│ ├── api.js
|
||
|
│ ├── config.js
|
||
|
│ ├── demo.scss
|
||
|
│ ├── mixin.js
|
||
|
│ └── props.js
|
||
|
├── components #演示项目封装的组件
|
||
|
│ └── page-nav
|
||
|
│ └── page-nav.vue
|
||
|
├── pages #页面
|
||
|
│ ├── componentsA #分包A
|
||
|
│ │ ├── ...
|
||
|
│ │ ├── ...
|
||
|
│ ├── componentsB #分包B
|
||
|
│ │ ├── ...
|
||
|
│ │ ├── ...
|
||
|
│ ├── componentsC #分包C
|
||
|
│ │ ├── ...
|
||
|
│ │ ├── ...
|
||
|
│ └── example #演示项目首页
|
||
|
│ ├── components.config.js #演示页面数据
|
||
|
│ └── components.nvue #主演示页面
|
||
|
├── static #演示项目需要的一些文件
|
||
|
│ ├── app-plus
|
||
|
│ │ └── mp-html
|
||
|
│ ├── common
|
||
|
│ │ └── js
|
||
|
│ └── uview
|
||
|
│ ├── common
|
||
|
│ └── example
|
||
|
├── store
|
||
|
│ └── index.js
|
||
|
├── uni_modules
|
||
|
│ └── uview-ui #uView2.0主包
|
||
|
│ ├── LICENSE
|
||
|
│ ├── README.md
|
||
|
│ ├── changelog.md
|
||
|
│ ├── components #所有的组件
|
||
|
│ ├── index.js
|
||
|
│ ├── index.scss
|
||
|
│ ├── libs
|
||
|
│ ├── package.json
|
||
|
│ └── theme.scss
|
||
|
├── unpackage
|
||
|
│ └── res
|
||
|
│ └── icons
|
||
|
├── util
|
||
|
│ └── request
|
||
|
│ ├── index.js
|
||
|
│ ├── requestInterceptors.js
|
||
|
│ └── responseInterceptors.js
|
||
|
├── App.vue
|
||
|
├── LICENSE
|
||
|
├── main.js
|
||
|
├── manifest.json
|
||
|
├── package-lock.json
|
||
|
├── pages.json #页面配置
|
||
|
├── package.json
|
||
|
├── README.md
|
||
|
├── template.h5.html #h5模板
|
||
|
├── tree.md
|
||
|
├── uni.scss
|
||
|
└── vue.config.js
|
||
|
|
||
|
|
||
|
created by beiqiao.
|
||
|
```
|