bkui-vue 2.0.1-beta.64 → 2.0.1-beta.65
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/index.cjs.js +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +1 -1
- package/lib/index.js +1 -1
- package/lib/resize-layout/index.js +4 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
@@ -175,6 +175,10 @@ const icon_namespaceObject = icon_x({ ["AngleLeft"]: () => __WEBPACK_EXTERNAL_MO
|
|
175
175
|
// 转换类型
|
176
176
|
var parseInitialDivide = (0,external_vue_namespaceObject.computed)(function () {
|
177
177
|
var divide = initialDivide.value;
|
178
|
+
// 如果min不是默认值,且initialDivide不是number类型,min优先级提升
|
179
|
+
if (min.value !== 3 && typeof divide !== 'number') {
|
180
|
+
return "".concat(min.value, "px");
|
181
|
+
}
|
178
182
|
if (typeof divide === 'number') {
|
179
183
|
divide = divide <= min.value ? "".concat(min.value, "px") : "".concat(divide, "px");
|
180
184
|
}
|