From a03b21fdb8635f13fa5639db4f470c3d991e511d Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 21 Mar 2024 17:23:49 +0100 Subject: [PATCH] chore(Input): remove useless slot props --- src/runtime/components/Input.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runtime/components/Input.vue b/src/runtime/components/Input.vue index 964cfe65..c60cd05b 100644 --- a/src/runtime/components/Input.vue +++ b/src/runtime/components/Input.vue @@ -42,9 +42,9 @@ export interface InputEmits { } export interface InputSlots { - leading(props: { disabled?: boolean; loading?: boolean; icon?: string; class: string }): any + leading(): any default(): any - trailing(props: { disabled?: boolean; loading?: boolean; icon?: string; class: string }): any + trailing(): any } @@ -152,13 +152,13 @@ onMounted(() => { - + - +