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

13 lines
270 B
TypeScript

import { DeprecationTypes, warnDeprecation } from './deprecations'
export function createPropsDefaultThis(propKey: string) {
return new Proxy(
{},
{
get() {
warnDeprecation(DeprecationTypes.PROPS_DEFAULT_THIS, null, propKey)
}
}
)
}