We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1643346 commit c462108Copy full SHA for c462108
src/reflect.ts
@@ -13,6 +13,7 @@ export function copyReflectionMetadata (
13
from: VueClass<Vue>
14
) {
15
forwardMetadata(to, from)
16
+ forwardMetadata(to.prototype, from.prototype)
17
18
Object.getOwnPropertyNames(from.prototype).forEach(key => {
19
forwardMetadata(to.prototype, from.prototype, key)
0 commit comments