-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shenyanxiu <[email protected]>
- Loading branch information
1 parent
7966343
commit 6f1db97
Showing
138 changed files
with
82,876 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,7 @@ | ||
/.nyc_output | ||
/coverage | ||
/node_modules | ||
/tests/fixtures | ||
/sign | ||
/dist | ||
/build |
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,5 @@ | ||
/.nyc_output | ||
/coverage | ||
/node_modules | ||
/dist | ||
/build |
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,49 @@ | ||
## 欢迎使用快应用-Vela日历模板 | ||
项目主要展示一个基础的日历示例模板 | ||
|
||
### 项目开发相关命令 | ||
|
||
#### 1. 开发 | ||
|
||
``` | ||
npm install | ||
npm run start | ||
``` | ||
|
||
#### 2. 构建 | ||
|
||
``` | ||
npm run build | ||
npm run release | ||
``` | ||
|
||
#### 3. 调试 | ||
``` | ||
npm run watch | ||
``` | ||
### 项目目录结构(src) | ||
``` | ||
. | ||
├── manifest.json //描述项目配置信息的manifest 文件(关于该文件的详细说明请参考档, | ||
│ [小米Vela快速应用框架Manifest文档](https://iot.mi.com/vela/quickapp/zh/content/framework/manifest.html)) | ||
│ | ||
├── app.ux //放置项目公共资源脚本的app.ux 文件 | ||
├── pages //应用主要页面代码 | ||
│ ├── index | ||
| | └── index.ux // 万年历首页 | ||
│ ├── detail | ||
| | └── detail.ux // 具体日期详情页(阴历,阳历,星期) | ||
│ └── logo | ||
| └── logo.ux // 应用加载过渡页 (logo与名称展示) | ||
├── i18n(国际化文件夹,具体参考快应用文档) | ||
| ├── defaults.json | ||
| ├── zh-CN.json | ||
| └── en-US.json | ||
└── common //存放公共资源文件夹 | ||
``` | ||
|
||
## 了解更多 | ||
|
||
你可以通过我们的[官方文档](https://iot.mi.com/vela/quickapp)熟悉和了解快应用。 | ||
|
Oops, something went wrong.