Having the same issue. I could reproduce this.
I think It's a permission issue related to the chrome extension. I had this problem too so I added a new permission url pattern in the manifest.json of the extension and now It's working just fine :
"permissions": [
"http://*/*",
"https://*/*",
"file:///*",
"contextMenus" ,
"*://*/*"
]
Also a reminder for everyone out there, you must have Vue.config.devtools = true; for Vue tab to appear.
I have created a package to automate this:
Follow the instructions there.
@fprijate @Mxkkxa @DimPaDev
@masterjg's fix has been merged into nw-vue-devtools and a new release (1.3.0) has been published to npm. Closing this issue.
Most helpful comment
I think It's a permission issue related to the chrome extension. I had this problem too so I added a new permission url pattern in the manifest.json of the extension and now It's working just fine :
"permissions": [ "http://*/*", "https://*/*", "file:///*", "contextMenus" , "*://*/*" ]