chore: make disabled prop optional in RepeatAfter component
This commit is contained in:
parent
12e1a90f79
commit
7beec2ef5a
|
|
@ -106,9 +106,8 @@ import TaskModel from '@/models/task'
|
|||
|
||||
const props = withDefaults(defineProps<{
|
||||
modelValue: ITask | undefined,
|
||||
disabled: boolean
|
||||
disabled?: boolean
|
||||
}>(), {
|
||||
modelValue: () => {},
|
||||
disabled: false,
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue