parent
e4a5712a33
commit
86ceef4352
@ -301,6 +301,23 @@ describe('component props', () => {
|
|||||||
}).not.toThrow(TypeError)
|
}).not.toThrow(TypeError)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('warn absent required props', () => {
|
||||||
|
const Comp = {
|
||||||
|
props: {
|
||||||
|
bool: { type: Boolean, required: true },
|
||||||
|
str: { type: String, required: true },
|
||||||
|
num: { type: Number, required: true }
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
return () => null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
render(h(Comp), nodeOps.createElement('div'))
|
||||||
|
expect(`Missing required prop: "bool"`).toHaveBeenWarned()
|
||||||
|
expect(`Missing required prop: "str"`).toHaveBeenWarned()
|
||||||
|
expect(`Missing required prop: "num"`).toHaveBeenWarned()
|
||||||
|
})
|
||||||
|
|
||||||
test('merging props from mixins and extends', () => {
|
test('merging props from mixins and extends', () => {
|
||||||
let setupProps: any
|
let setupProps: any
|
||||||
let renderProxy: any
|
let renderProxy: any
|
||||||
|
@ -142,7 +142,7 @@ export function initProps(
|
|||||||
setFullProps(instance, rawProps, props, attrs)
|
setFullProps(instance, rawProps, props, attrs)
|
||||||
// validation
|
// validation
|
||||||
if (__DEV__) {
|
if (__DEV__) {
|
||||||
validateProps(props, instance)
|
validateProps(rawProps || {}, props, instance)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isStateful) {
|
if (isStateful) {
|
||||||
@ -264,8 +264,8 @@ export function updateProps(
|
|||||||
// trigger updates for $attrs in case it's used in component slots
|
// trigger updates for $attrs in case it's used in component slots
|
||||||
trigger(instance, TriggerOpTypes.SET, '$attrs')
|
trigger(instance, TriggerOpTypes.SET, '$attrs')
|
||||||
|
|
||||||
if (__DEV__ && rawProps) {
|
if (__DEV__) {
|
||||||
validateProps(props, instance)
|
validateProps(rawProps || {}, props, instance)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -462,13 +462,17 @@ function getTypeIndex(
|
|||||||
/**
|
/**
|
||||||
* dev only
|
* dev only
|
||||||
*/
|
*/
|
||||||
function validateProps(props: Data, instance: ComponentInternalInstance) {
|
function validateProps(
|
||||||
const rawValues = toRaw(props)
|
rawProps: Data,
|
||||||
|
props: Data,
|
||||||
|
instance: ComponentInternalInstance
|
||||||
|
) {
|
||||||
|
const resolvedValues = toRaw(props)
|
||||||
const options = instance.propsOptions[0]
|
const options = instance.propsOptions[0]
|
||||||
for (const key in options) {
|
for (const key in options) {
|
||||||
let opt = options[key]
|
let opt = options[key]
|
||||||
if (opt == null) continue
|
if (opt == null) continue
|
||||||
validateProp(key, rawValues[key], opt, !hasOwn(rawValues, key))
|
validateProp(key, resolvedValues[key], opt, !hasOwn(rawProps, key))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user