forked from umicro/uView2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
``` | ||
. | ||
├── 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. | ||
``` |