fix(compat): fix props check for v-model compat warning (#4056)

This commit is contained in:
Austin Keener 2021-07-04 18:32:44 -04:00 committed by GitHub
parent 348c3b01e5
commit f3e15f633e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -398,9 +398,10 @@ export const deprecationData: Record<DeprecationTypes, DeprecationData> = {
DeprecationTypes.COMPONENT_V_MODEL
}: false }\`.`
if (
comp.props && isArray(comp.props)
comp.props &&
(isArray(comp.props)
? comp.props.includes('modelValue')
: hasOwn(comp.props, 'modelValue')
: hasOwn(comp.props, 'modelValue'))
) {
return (
`Component delcares "modelValue" prop, which is Vue 3 usage, but ` +