更新readme

pull/1/head
yutent 2023-04-17 16:39:45 +08:00
parent c9b21cd790
commit a456df0b53
3 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,7 @@
### 我们的特色
- `@xxx=yyy` 事件绑定, 可以任意节点上直接使用类似`vue事件绑定`的这种写法, 就可实现事件绑定。组件被移出文档时, 事件会**自动销毁**, 无须手动销毁。
- `@click.stop=xxx` 事件绑定支持修饰符
- `:xxx=yyy`, 属性绑定, 类似`vue`,在属性前加上`:`, 该属性不再使用`setAttribute()`, 而是直接赋值, 可满足你需要传递复杂数据结构的需求。
- `#animation={type}`, 开箱即用的动画配置, 内置6种动画`fade(默认), scale, bounce, micro-bounce, rotate, slide`
- `ref=xxx`, 类似`vue`的节点标识, 可方便的在`mounted()`之后通过 `this.$refs.xxx` 来访问该节点

View File

@ -1,3 +1,9 @@
/**
* {模板解析, 基于 lit-html 二次开发}
* @author yutent<yutent.io@gmail.com>
* @date 2023/03/7 16:36:59
*/
import { boolMap, WC_PART, NOTHING } from './constants.js'
import { animate, MODES } from './anim.js'

View File

@ -1,5 +1,5 @@
/**
* {wcui的核心库, 基于lit-core二次开发}
* {@bd/ui的核心库}
* @author yutent<yutent.io@gmail.com>
* @date 2023/03/07 18:10:43
*/