diff --git a/Readme.md b/Readme.md index c7d5a7b..8241cab 100644 --- a/Readme.md +++ b/Readme.md @@ -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` 来访问该节点 diff --git a/src/html.js b/src/html.js index a074251..1a90758 100644 --- a/src/html.js +++ b/src/html.js @@ -1,3 +1,9 @@ +/** + * {模板解析, 基于 lit-html 二次开发} + * @author yutent + * @date 2023/03/7 16:36:59 + */ + import { boolMap, WC_PART, NOTHING } from './constants.js' import { animate, MODES } from './anim.js' diff --git a/src/index.js b/src/index.js index 7abfe71..028e655 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ /** - * {wcui的核心库, 基于lit-core二次开发} + * {@bd/ui的核心库} * @author yutent * @date 2023/03/07 18:10:43 */