We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
type
1 parent 704b2cd commit b9b603fCopy full SHA for b9b603f
src/runtimeContext.ts
@@ -174,7 +174,7 @@ export interface ComponentPublicInstance {}
174
*/
175
export declare interface ComponentInternalInstance {
176
uid: number
177
- // type: ConcreteComponent
+ type: Record<string, unknown> // ConcreteComponent
178
parent: ComponentInternalInstance | null
179
root: ComponentInternalInstance
180
@@ -239,6 +239,7 @@ export function toVue3ComponentInstance(
239
const instance: ComponentInternalInstance = {
240
proxy: vm,
241
update: vm.$forceUpdate,
242
+ type: vm.$options,
243
uid: vm._uid,
244
245
// $emit is defined on prototype and it expected to be bound
0 commit comments