更新
This commit is contained in:
parent
7b9afcb2fe
commit
31eebd4def
@ -44,17 +44,17 @@ const props = defineProps({
|
||||
},
|
||||
});
|
||||
|
||||
const taskList = ref([]);
|
||||
onUpdated(() => {
|
||||
taskList.value = [];
|
||||
props.list.forEach((item) => {
|
||||
taskList.value.push({
|
||||
const taskList = computed(() => {
|
||||
let arr: any = [];
|
||||
props.list.forEach((item: any) => {
|
||||
arr.push({
|
||||
id: item.id,
|
||||
title: item.template_name,
|
||||
startDate: new Date(item.start_time),
|
||||
endDate: new Date(item.end_time),
|
||||
});
|
||||
});
|
||||
return arr;
|
||||
});
|
||||
|
||||
const emits = defineEmits(["clickItem", "initShowDate"]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user