You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently the same issue is created in Volar and closed mentioning common.ts definitions in vuejs/composition-api vuejs/language-tools#1350
What is expected?
Error has to be displayed when unknown property or data in template (typescript code)
What is actually happening?
No error is displayed when unknown property or data in template (typescript code) due to
export type Data = { [key: string]: unknown }
in types/common.d.ts
The text was updated successfully, but these errors were encountered:
Version
2.7.8
Reproduction link
github.com
Steps to reproduce
This issue was created first in Vetur & later fixed in @vuejs/composition-api as below
vuejs/vetur#2505
vuejs/composition-api#609
Recently the same issue is created in Volar and closed mentioning common.ts definitions in vuejs/composition-api
vuejs/language-tools#1350
What is expected?
Error has to be displayed when unknown property or data in template (typescript code)
What is actually happening?
No error is displayed when unknown property or data in template (typescript code) due to
export type Data = { [key: string]: unknown }
in types/common.d.ts
The text was updated successfully, but these errors were encountered: