vue3-core/packages/runtime-core/src/compat/props.ts

13 lines
270 B
TypeScript
Raw Normal View History

import { DeprecationTypes, warnDeprecation } from './compatConfig'
2021-04-06 23:08:21 +08:00
export function createPropsDefaultThis(propKey: string) {
return new Proxy(
{},
{
get() {
2021-04-10 06:52:14 +08:00
warnDeprecation(DeprecationTypes.PROPS_DEFAULT_THIS, null, propKey)
2021-04-06 23:08:21 +08:00
}
}
)
}