const todoList = computed<Array<Item>>(() => list.value.filter((item : Item) : boolean => !item.checked))
const completionList = computed<Array<Item>>(() => list.value.filter((item : Item) : boolean => item.checked))

retion_p
- 发布:2024-09-04 10:00
- 更新:2024-09-04 11:53
- 阅读:186
