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

13 lines
270 B
TypeScript
Raw Normal View History

2021-04-06 23:08:21 +08:00
import { DeprecationTypes, warnDeprecation } from './deprecations'
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
}
}
)
}