@fmdevui/fm-dev 1.0.80 → 1.0.81
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/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fm-dev v1.0.
|
|
1
|
+
/*! fm-dev v1.0.81 */
|
|
2
2
|
import { defineComponent, reactive, computed, watch, resolveComponent, createBlock, openBlock, withCtx, createVNode, createElementVNode, createTextVNode, toDisplayString as toDisplayString$1, withDirectives, createElementBlock, Fragment, renderList, vShow, ref, onMounted, nextTick, normalizeStyle, createCommentVNode, normalizeClass, withModifiers, mergeModels, useModel, effectScope, getCurrentInstance, shallowRef, isRef as isRef$1, inject, onUnmounted, h, Text, markRaw, hasInjectionContext, toRaw as toRaw$1, isReactive as isReactive$1, toRef, unref, getCurrentScope, onScopeDispose, toRefs, resolveDirective, resolveDynamicComponent, useSlots, mergeProps, createSlots, renderSlot, toHandlers, onBeforeUnmount, onUpdated, useAttrs, normalizeProps, guardReactiveProps } from 'vue';
|
|
3
3
|
import crypto from 'crypto';
|
|
4
4
|
import require$$0 from 'url';
|
|
@@ -55481,8 +55481,12 @@ const useVxeTable = (opt, extras) => {
|
|
|
55481
55481
|
// 是否启用 localStorage 本地保存,会将列操作状态保留在本地(需要有 id)
|
|
55482
55482
|
visible: true,
|
|
55483
55483
|
// 启用显示/隐藏列状态
|
|
55484
|
-
resizable: true
|
|
55484
|
+
resizable: true,
|
|
55485
55485
|
// 启用列宽状态
|
|
55486
|
+
sort: true,
|
|
55487
|
+
// 启用列顺序缓存
|
|
55488
|
+
fixed: true
|
|
55489
|
+
// 启用冻结列状态缓存
|
|
55486
55490
|
}
|
|
55487
55491
|
}
|
|
55488
55492
|
});
|
|
@@ -82,8 +82,12 @@ const useVxeTable = (opt, extras) => {
|
|
|
82
82
|
// 是否启用 localStorage 本地保存,会将列操作状态保留在本地(需要有 id)
|
|
83
83
|
visible: true,
|
|
84
84
|
// 启用显示/隐藏列状态
|
|
85
|
-
resizable: true
|
|
85
|
+
resizable: true,
|
|
86
86
|
// 启用列宽状态
|
|
87
|
+
sort: true,
|
|
88
|
+
// 启用列顺序缓存
|
|
89
|
+
fixed: true
|
|
90
|
+
// 启用冻结列状态缓存
|
|
87
91
|
}
|
|
88
92
|
}
|
|
89
93
|
});
|