We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b19381e commit c246cc1Copy full SHA for c246cc1
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