vuejs / devtools-v6

⚙️ Browser devtools extension for debugging Vue.js applications.
https://devtools-v6.vuejs.org/
MIT License
24.68k stars 4.15k forks source link

Tauri support. #2113

Closed origin-coding closed 1 year ago

origin-coding commented 1 year ago

What problem does this feature solve?

Vue-devtools' installation for standalone applications mainly supports Electron, while I'm using Tauri. So is there a plan for making support for Tauri applications?

Akryum commented 1 year ago

In theory you can use the Electron version of the devtools to inspect a Tauri app by adding the necessary script to it so it connects to the devtools remotely.

origin-coding commented 1 year ago

In theory you can use the Electron version of the devtools to inspect a Tauri app by adding the necessary script to it so it connects to the devtools remotely.

Yes, you are right. I will give a try, thanks.