omis - update readme
This commit is contained in:
parent
6e0cd2f7e3
commit
dbadbc0b30
|
@ -0,0 +1,26 @@
|
|||
# Omis
|
||||
|
||||
> Functional Component + Store + Scoped Style
|
||||
|
||||
* 函数式风格但非函数式编程
|
||||
* 结构-样式-行为分离
|
||||
* hyperscript 视觉上更加友好
|
||||
* 每个组件可以带有一个 store,去中心化
|
||||
* 每个组件的 store 可以依赖全局 store,中心化
|
||||
* 每个组件 store 拥有 update 方法,执行该方法自定局部刷新组件
|
||||
|
||||
## 开发
|
||||
|
||||
``` bash
|
||||
npm start example-name
|
||||
```
|
||||
|
||||
## 发布
|
||||
|
||||
``` bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
## Todo
|
||||
|
||||
* Web Components Supporting
|
|
@ -1,6 +1,14 @@
|
|||
# Omis
|
||||
|
||||
> Web Components Supporting + Scoped Style + Store + Function Component
|
||||
> Functional Component + Store + Scoped Style
|
||||
|
||||
* Functional style but non-functional programming
|
||||
* Structure-Style-Behavior Separation
|
||||
* Hyperscript is visually more friendly
|
||||
* Each component can have a store and be de-centralized
|
||||
* Stores of each component can rely on global stores and be centralized
|
||||
* Each component store has an update method that executes the method to customize local refresh components
|
||||
|
||||
|
||||
## Develop
|
||||
|
||||
|
@ -13,3 +21,7 @@ npm start example-name
|
|||
``` bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
## Todo
|
||||
|
||||
* Web Components Supporting
|
||||
|
|
Loading…
Reference in New Issue