1.代码优化

v1.0.0
sws 2024-09-10 18:43:34 +08:00
parent 9c372d7364
commit 4af1c23477
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ onMounted(() => {
} }
}); });
const data_list_computer = computed(() => { const data_list_computer = computed(() => {
const { data_type, category, number, sort, sort_rules, is_cover } = new_content.value; const { data_type, category, number, sort, sort_rules, is_cover, data_list } = new_content.value;
return { data_type, category, number, sort, sort_rules, is_cover }; return { data_type, category, number, sort, sort_rules, is_cover, data_list };
}); });
watch( watch(
() => data_list_computer.value, () => data_list_computer.value,