mirror of https://github.com/vuejs/core.git
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
|
import { DeprecationTypes, warnDeprecation } from './deprecations'
|
||
|
|
||
|
export function createPropsDefaultThis(propKey: string) {
|
||
|
return new Proxy(
|
||
|
{},
|
||
|
{
|
||
|
get() {
|
||
|
warnDeprecation(DeprecationTypes.PROPS_DEFAULT_THIS, propKey)
|
||
|
}
|
||
|
}
|
||
|
)
|
||
|
}
|