@shival99/z-ui 1.2.35 → 1.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3057,10 +3057,12 @@ class ZTableComponent {
|
|
|
3057
3057
|
this._dataForceUpdate.update(v => v + 1);
|
|
3058
3058
|
});
|
|
3059
3059
|
explicitEffect([this.zKey, this.zConfig], ([key, config]) => {
|
|
3060
|
+
console.log('🚀 ~ key:', key);
|
|
3060
3061
|
if (key && config.columns && config.columns.length > 0) {
|
|
3062
|
+
console.log('🚀 ~ key:', key);
|
|
3061
3063
|
this._loadConfigCache();
|
|
3062
3064
|
}
|
|
3063
|
-
});
|
|
3065
|
+
}, { defer: true });
|
|
3064
3066
|
explicitEffect([this.zConfig], ([cfg]) => {
|
|
3065
3067
|
const initial = cfg.initialState;
|
|
3066
3068
|
console.log('🚀 ~ initial:', initial);
|