Types or code suggestions #296
-
Hi, everyone! Is there a way to have code suggestions in vscode? I use buefy in my nuxt project as nuxt plugin. Here's the code of my buefy nuxt plugin: import Buefy from 'buefy'
import 'buefy/dist/buefy.css'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(Buefy, {})
}) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As far as I know there is no extension specifically for this in vscode. That honestly be something that could be very (maybe a future project idea?) helpful however the docs are always the best reference tool. From my understanding all you can do is try to rely on intelligence or volar. |
Beta Was this translation helpful? Give feedback.
The TS Migrate Process is almost finished as far as I know. So we will have TypeScript declarations as @kikuomax mentioned here therefore we will have code suggestions. So we don't need some extra project to support this feature. I was just curious if there's a way to have it before the Migrate Process is finished. Anyway, thanks for your answer 🙌