Refactor form-dialog.vue to use Composition API #17
Loading…
Reference in a new issue
No description provided.
Delete branch ":refactor/form-dialog"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -89,1 +71,3 @@
},
const props = defineProps<{
title: string,
form: object,
I'm not sureIt is a thing but will cause errors as soon as you ty to accessobject
is a type in TypeScript.form
. I would expect to seeany
or probably betterRecord<string, any>
here.Fixed