更新文档

pull/1/head
yutent 2023-03-27 19:03:19 +08:00
parent 8c033984d4
commit 21a565e04c
1 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
## 9号UI组件库的核心 ## 百搭UI组件库的核心
### 开发文档 ### 开发文档
[开发文档](https://github.com/bd-js/core/wiki) [开发文档](https://github.com/bd-js/core/wiki)
@ -48,7 +48,12 @@ class Hello extends Component {
} }
customElements.define('wc-hello', Hello) if (!customElements.get('wc-hello')) {
customElements.define('wc-hello', Hello)
}
// 和上面的写法等价
// 如果不希望修改前缀`wc-`的话, 可以直接调用内置的reg方法注册组件即可。
Hello.reg('hello')
/* /*