chore(client): fix type def

This commit is contained in:
syuilo 2022-07-13 16:33:52 +09:00
parent b08ead1dce
commit 170b1b89ba
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ import { useInterval } from '@/scripts/use-interval';
const props = defineProps<{
modelValue: string | number;
type?: 'text' | 'number' | 'password' | 'email' | 'url' | 'date' | 'time';
type?: 'text' | 'number' | 'password' | 'email' | 'url' | 'date' | 'time' | 'search';
required?: boolean;
readonly?: boolean;
disabled?: boolean;