更新文档
parent
8c033984d4
commit
21a565e04c
|
@ -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 {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!customElements.get('wc-hello')) {
|
||||||
customElements.define('wc-hello', Hello)
|
customElements.define('wc-hello', Hello)
|
||||||
|
}
|
||||||
|
// 和上面的写法等价
|
||||||
|
// 如果不希望修改前缀`wc-`的话, 可以直接调用内置的reg方法注册组件即可。
|
||||||
|
Hello.reg('hello')
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue