vuejs / devtools-next

The next iteration of Vue DevTools
https://devtools-next.vuejs.org/
MIT License
1.18k stars 80 forks source link

Fix integration with @tanstack/vue-query #440

Open teziovsky opened 3 weeks ago

teziovsky commented 3 weeks ago

Hi 👋🏼

I'm having issues with the Vue Query integration in my project. It was working fine before, but now it has stopped functioning.

Could you please identify and fix the problem?

Thanks!

webfansplz commented 3 weeks ago

What's your devtools version?

teziovsky commented 3 weeks ago

Devtools: v7.2.1 Vue Query: ^5.45.0

webfansplz commented 3 weeks ago

Devtools: v7.2.1 Vue Query: ^5.45.0

Could you try the v7.3.0-beta.3, thanks.

teziovsky commented 3 weeks ago

Still doesn't work on 7.3.0-beta.3

447531036_448401977908634_9023729026126158620_n

webfansplz commented 3 weeks ago

Can you provide a mini repo? thanks.

teziovsky commented 3 weeks ago

Now I see that Vue Query Devtools doesn't work even in the standard Vue Developer Tools chrome extension 🤔 It could be an issue with Vue Query

webfansplz commented 3 weeks ago

Now I see that Vue Query Devtools doesn't work even in the standard Vue Developer Tools chrome extension 🤔 It could be an issue with Vue Query

Thanks for the feedback, Can you open an issue to the Vue Query repo? thank you 🙏.

reslear commented 1 week ago

@teziovsky just add enableDevtoolsV6Plugin: true :

export const install: Plugin = (app) => {
  app.use(VueQueryPlugin, {
    queryClient,
    enableDevtoolsV6Plugin: true,
  })
}