nuxt-hs-ui 2.1.18 → 2.1.19
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/dist/module.json
CHANGED
|
@@ -109,12 +109,12 @@ watch(
|
|
|
109
109
|
const initTabulator = () => {
|
|
110
110
|
// console.log(ct, 'initTabulator');
|
|
111
111
|
if (table.value === null) return;
|
|
112
|
-
|
|
112
|
+
const option = props.option;
|
|
113
113
|
if (props.rowCountHeight !== 0) {
|
|
114
|
+
let height = 0;
|
|
114
115
|
height = props.rowCountHeight * 39 + 85 + 2;
|
|
116
|
+
option.height = height === 0 ? "" : height;
|
|
115
117
|
}
|
|
116
|
-
const option = props.option;
|
|
117
|
-
option.height = height === 0 ? "" : height;
|
|
118
118
|
option.columns = props.columns;
|
|
119
119
|
option.data = data.value;
|
|
120
120
|
option.reactiveData = false;
|