This commit is contained in:
syuilo 2022-12-30 18:33:26 +09:00
parent 3968597a7b
commit c631e14e53
2 changed files with 4 additions and 4 deletions

View File

@ -78,8 +78,8 @@ const inputEl = ref<HTMLElement>();
const prefixEl = ref<HTMLElement>();
const suffixEl = ref<HTMLElement>();
const height =
props.small ? 36 :
props.large ? 38 :
props.small ? 35 :
props.large ? 39 :
37;
const focus = () => inputEl.value.focus();

View File

@ -64,8 +64,8 @@ const prefixEl = ref(null);
const suffixEl = ref(null);
const container = ref(null);
const height =
props.small ? 36 :
props.large ? 38 :
props.small ? 35 :
props.large ? 39 :
37;
const focus = () => inputEl.value.focus();