-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow and support non-reactive instance variables in vue's d.ts #7060
Comments
This is not a bug, and I'm not sure if this is even possible within TypeScript. I'll close as a wontfix, but cc @ktsn @HerringtonDarkholme feel free to provide more info. |
TypeScript compiler cannot infer I thought about supporting such use case by manually providing non-reactive properties type as type parameter. But current TS compiler does not allow both providing part of type parameters and infer remaining type parameters from arguments. |
Thanks @ktsn for clarification. Let me first explain that i am technically on the JS side of coding, merely using the VSCode-TS-for-JS language-over-Vue service. Look back again at that marvelous word i just plugged together - a chain of technologies in certain flux. And, from my point of view, not very open to the end user(read me). Not open means certain feedback is lacking, read as not logging/traceable/documented. Without experience, reading github issues to keep up, reasoning why certain things in software-land might have happened or not, is very hard. Is it VS-Code, TS Config, TS language service, TS Version, my code using this instance variables there in Vue's created method, just me ... bug-or-feature? So, please, say more prominently of what's In and what's Out. So that's the now-issue part of this issue for me. Would appreciate to hear/have your kind feedback about those points. Additionally
Last but not least, my current pain points related around the op question
P.S. If you ever reach this line, i personally thank you for taking your time ⭐ |
This is how I managed to initialize non-reactive variables in TypeScript. You will need to use vue-class-component:
Note the interface. |
Version
2.5.3
Reproduction link
https://codesandbox.io/s/vn1zlz8n63
Steps to reproduce
Hover over
this.logit
inm_logitShouldBeInferredCorrectly
What is expected?
Hover over should display property logit:debug.Debugger. I have your common understanding that hover is just the TS inference effect.
What is actually happening?
Displays
any
The text was updated successfully, but these errors were encountered: