8000
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.
1 parent 4747a44 commit d101f6cCopy full SHA for d101f6c
types/test/vue-test.ts
@@ -19,6 +19,7 @@ class Test extends Vue {
19
}
20
21
// test property reification
22
+ $el!: HTMLElement | SVGElement;
23
$refs!: {
24
vue: Vue,
25
element: HTMLInputElement,
types/vue.d.ts
@@ -21,7 +21,7 @@ export interface CreateElement {
export interface Vue {
- readonly $el: HTMLElement;
+ readonly $el: Element;
readonly $options: ComponentOptions<Vue>;
26
readonly $parent: Vue;
27
readonly $root: Vue;
0 commit comments