передать в defineProps тип из двух интерфейсов InputProps | TextareaProps, потому что type argument passed to defineProps() must be a literal type, or a reference to an interface or literal type. Это можно как-то обойти?
а интерфейсы в этом же файле находятся, где пропсы принимаешь?
а defineProps в каком виде сейчас?
const props = defineProps<InputProps | TextareaProps>();
а попробуй defineProps<PropType<InputProps | TextareaProps}>() может сработает. Типизация с union не очень дружит
Неа, та же телега про “type argument passed to defineProps() must be a literal type, or …”
Обсуждают сегодня