Fix error caught by stricter checking in TS #37537 (#43652)

This commit is contained in:
Anders Hejlsberg
2020-04-06 13:20:43 -07:00
committed by GitHub
parent 6e7b9e0a4d
commit c4bdf942b9
+1 -1
View File
@@ -18,7 +18,7 @@ declare module 'vue/types/vue' {
}
interface Vue {
$v: ValidationProperties<this> & ValidationGroups & Validation
$v: ValidationProperties<Vue> & ValidationGroups & Validation
delayTouch(v: Validation): void
}