Refactor TodoItem and CreateModal to simplify state management and remove unused code

This commit is contained in:
2026-02-23 16:37:06 +01:00
parent 56f89b6669
commit c724001c50
4 changed files with 3 additions and 14 deletions

2
src/vite-env.d.ts vendored
View File

@@ -3,7 +3,7 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
const component: DefineComponent<object, object, any>
export default component
}