Browse Source
Merge pull request #60 from juzhiyuan/master
fix: 通用元件父容器宽度、文档错误
master
狼叔
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
6 additions and
3 deletions
-
README.en-US.md
-
README.md
-
packages/core/src/mods/sideBar/index.module.less
|
|
@ -20,7 +20,7 @@ |
|
|
|
|
|
|
|
- [x] **Process visualization:** iMove is easy to use and easy to draw. Its logical expression is more intuitive and easy to understand. |
|
|
|
- [x] **Logic re-usage:** iMove node supports multiplexing, and its single node supports parameter configuration. |
|
|
|
- [x] **Flexible**: We need to write an only function. The node can also be extended. iMove can alse support plug-in integration. |
|
|
|
- [x] **Flexible**: We need to write an only function. The node can also be extended. iMove can also support plug-in integration. |
|
|
|
- [ ] **Multi-language compilation**: There is no language compiling code limitation (example: support JavaScript, Java compiling code). |
|
|
|
|
|
|
|
## Quickstart |
|
|
@ -33,8 +33,9 @@ Download this project, install dependencies and start the project. |
|
|
|
$ git clone https://github.com/imgcook/imove.git |
|
|
|
$ npm run example |
|
|
|
``` |
|
|
|
|
|
|
|
<!-- markdown-link-check-disable --> |
|
|
|
Open http://localhost:8000/ and you can see the online effect. |
|
|
|
<!-- markdown-link-check-enable --> |
|
|
|
|
|
|
|
### Step2. Draw flowchart |
|
|
|
|
|
|
|
|
|
@ -43,7 +43,9 @@ $ npm install |
|
|
|
$ npm run example |
|
|
|
``` |
|
|
|
|
|
|
|
<!-- markdown-link-check-disable --> |
|
|
|
此时浏览器会自动打开 `http://localhost:8000/` ,可以看到运行效果。 |
|
|
|
<!-- markdown-link-check-enable --> |
|
|
|
|
|
|
|
### 步骤 2. 绘制流程图 |
|
|
|
|
|
|
|
|
|
@ -1,5 +1,4 @@ |
|
|
|
.container { |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
:global { |
|
|
@ -16,4 +15,5 @@ |
|
|
|
|
|
|
|
.chart { |
|
|
|
width: 100%; |
|
|
|
min-width: 201px; |
|
|
|
} |
|
|
|