3h1-ui 2.13.6 → 2.13.7
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.
- package/es/index.js +1 -3
- package/lib/index.js +1 -3
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -16647,9 +16647,7 @@ function useTable(tableProps) {
|
|
|
16647
16647
|
function getTableInstance() {
|
|
16648
16648
|
const table2 = unref(tableRef);
|
|
16649
16649
|
if (!table2) {
|
|
16650
|
-
|
|
16651
|
-
"The table instance has not been obtained yet, please make sure the table is presented when performing the table operation!"
|
|
16652
|
-
);
|
|
16650
|
+
return;
|
|
16653
16651
|
}
|
|
16654
16652
|
return table2;
|
|
16655
16653
|
}
|
package/lib/index.js
CHANGED
|
@@ -16649,9 +16649,7 @@ function useTable(tableProps) {
|
|
|
16649
16649
|
function getTableInstance() {
|
|
16650
16650
|
const table2 = vue.unref(tableRef);
|
|
16651
16651
|
if (!table2) {
|
|
16652
|
-
|
|
16653
|
-
"The table instance has not been obtained yet, please make sure the table is presented when performing the table operation!"
|
|
16654
|
-
);
|
|
16652
|
+
return;
|
|
16655
16653
|
}
|
|
16656
16654
|
return table2;
|
|
16657
16655
|
}
|