优化更新方法

pull/1/head 1.0.2
yutent 2023-03-13 18:50:13 +08:00
parent 03c5255e6a
commit 5624fa43eb
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@bd/core",
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"description": "百搭UI组件库的核心",
"main": "dist/index.js",

View File

@ -56,7 +56,7 @@ export class Component extends HTMLElement {
return
}
this[key] = value
this.requestUpdate(name, oldValue)
this.#requestUpdate(name, oldValue)
},
enumerable: false
}
@ -177,7 +177,7 @@ export class Component extends HTMLElement {
}
// 请求更新
requestUpdate(name, oldValue) {
#requestUpdate(name, oldValue) {
let shouldUpdate = true
this[__changed_props__].set(name, this[name])