提交 f4d6e852 编写于 作者: Q qiang

chore: build

上级 1a5efd16
......@@ -4384,7 +4384,10 @@ var PickerView = /* @__PURE__ */ defineBuiltInComponent({
let ColumnsPreRef = vue.ref([]);
let columnsRef = vue.ref([]);
function getItemIndex(vnode) {
const columnVNodes = columnsRef.value.filter((ref) => typeof ref.type !== "symbol");
let columnVNodes = columnsRef.value;
{
columnVNodes = columnVNodes.filter((ref) => typeof ref.type !== "symbol");
}
let index2 = columnVNodes.indexOf(vnode);
return index2 !== -1 ? index2 : ColumnsPreRef.value.indexOf(vnode);
}
......
......@@ -10123,7 +10123,10 @@ var PickerView = /* @__PURE__ */ defineBuiltInComponent({
let ColumnsPreRef = ref([]);
let columnsRef = ref([]);
function getItemIndex(vnode) {
const columnVNodes = columnsRef.value.filter((ref2) => typeof ref2.type !== "symbol");
let columnVNodes = columnsRef.value;
{
columnVNodes = columnVNodes.filter((ref2) => typeof ref2.type !== "symbol");
}
let index2 = columnVNodes.indexOf(vnode);
return index2 !== -1 ? index2 : ColumnsPreRef.value.indexOf(vnode);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册