Home > OS >  what is the typescript type of app in vue 3
what is the typescript type of app in vue 3

Time:05-11

I am using Vue 3 and enter image description here

How can I fix this?

CodePudding user response:

app here would be an application instance, which the vue package exports as App. And if you want to attach axios and $http to the application instance, you'd have to use an any-type assertion.

                          
  • Related