Browse Source

Merge pull request #60 from juzhiyuan/master

fix: 通用元件父容器宽度、文档错误
master
狼叔 4 years ago
committed by GitHub
parent
commit
8e2e76123d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      README.en-US.md
  2. 2
      README.md
  3. 2
      packages/core/src/mods/sideBar/index.module.less

5
README.en-US.md

@ -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] **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] **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). - [ ] **Multi-language compilation**: There is no language compiling code limitation (example: support JavaScript, Java compiling code).
## Quickstart ## Quickstart
@ -33,8 +33,9 @@ Download this project, install dependencies and start the project.
$ git clone https://github.com/imgcook/imove.git $ git clone https://github.com/imgcook/imove.git
$ npm run example $ npm run example
``` ```
<!-- markdown-link-check-disable -->
Open http://localhost:8000/ and you can see the online effect. Open http://localhost:8000/ and you can see the online effect.
<!-- markdown-link-check-enable -->
### Step2. Draw flowchart ### Step2. Draw flowchart

2
README.md

@ -43,7 +43,9 @@ $ npm install
$ npm run example $ npm run example
``` ```
<!-- markdown-link-check-disable -->
此时浏览器会自动打开 `http://localhost:8000/` ,可以看到运行效果。 此时浏览器会自动打开 `http://localhost:8000/` ,可以看到运行效果。
<!-- markdown-link-check-enable -->
### 步骤 2. 绘制流程图 ### 步骤 2. 绘制流程图

2
packages/core/src/mods/sideBar/index.module.less

@ -1,5 +1,4 @@
.container { .container {
width: 100%; width: 100%;
:global { :global {
@ -16,4 +15,5 @@
.chart { .chart {
width: 100%; width: 100%;
min-width: 201px;
} }

Loading…
Cancel
Save