fix: type error
This commit is contained in:
parent
5bfab54120
commit
b2617a924f
1 changed files with 7 additions and 7 deletions
|
|
@ -24,14 +24,14 @@ withDefaults(
|
|||
);
|
||||
|
||||
defineEmits<{
|
||||
(e: 'handleHold', node: string): void;
|
||||
(e: 'select', node: string): void;
|
||||
(e: 'create', node: string): void;
|
||||
(e: 'handleHold', node: any): void;
|
||||
(e: 'select', node: any): void;
|
||||
(e: 'create', node: any): void;
|
||||
|
||||
(e: 'view', node: string): void;
|
||||
(e: 'edit', node: string): void;
|
||||
(e: 'delete', node: string): void;
|
||||
(e: 'changeStatus', node: string): void;
|
||||
(e: 'view', node: any): void;
|
||||
(e: 'edit', node: any): void;
|
||||
(e: 'delete', node: any): void;
|
||||
(e: 'changeStatus', node: any): void;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue