Skip to content

Commit

Permalink
fix(typing): relax $options type for TS2.6+ (#6819)
Browse files Browse the repository at this point in the history
  • Loading branch information
HerringtonDarkholme authored and yyx990803 committed Oct 15, 2017
1 parent 471de4a commit 9caed00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/vue.d.ts
Expand Up @@ -22,7 +22,7 @@ export interface CreateElement {

export interface Vue {
readonly $el: HTMLElement;
readonly $options: ComponentOptions<this>;
readonly $options: ComponentOptions<Vue>;
readonly $parent: Vue;
readonly $root: Vue;
readonly $children: Vue[];
Expand Down

0 comments on commit 9caed00

Please sign in to comment.