remove console

This commit is contained in:
Theluyuan 2023-04-25 09:36:49 +08:00
parent eab2a7b52e
commit 1abacddf32
4 changed files with 3 additions and 7 deletions

View File

@ -680,11 +680,9 @@ const _sfc_main$1 = defineComponent({
let set = /* @__PURE__ */ new Set();
for (let i of props.list) {
set.add(i[props.soulkey]);
console.log(i, i[props.soulkey]);
}
alllist.value = Array.from(set);
list.value = alllist.value;
console.log(list.value);
}, { deep: true });
const seltext = ref("");
watch(seltext, () => {

View File

@ -19104,11 +19104,9 @@ const _sfc_main$E = defineComponent({
let set = /* @__PURE__ */ new Set();
for (let i of props.list) {
set.add(i[props.soulkey]);
console.log(i, i[props.soulkey]);
}
alllist.value = Array.from(set);
list.value = alllist.value;
console.log(list.value);
}, { deep: true });
const seltext = ref("");
watch(seltext, () => {

View File

@ -91,11 +91,11 @@ watch(
let set = new Set();
for (let i of props.list) {
set.add(i[props.soulkey]);
console.log(i, i[props.soulkey]);
// console.log(i, i[props.soulkey]);
}
alllist.value = Array.from(set);
list.value = alllist.value;
console.log(list.value);
// console.log(list.value);
},
{ deep: true }
);

File diff suppressed because one or more lines are too long