fix: type error

This commit is contained in:
Net 2024-08-14 16:02:26 +07:00
parent 5bfab54120
commit b2617a924f

View file

@ -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>