You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nevermind, looks like it can be fixed here with the proposed change. Although I'm not entirely sure if all Windows editors can handle / delimited paths, would it be safer to replace them to '\\\\' instead? @Akryum can you confirm on windows?
Uh oh!
There was an error while loading. Please reload this page.
When opening file from devtools there are missing slashes in path for file. This issue is caused because of template literals is escaping with
\
.To fast fix this issue simply add replace on this line: https://github.com/vuejs/vue-devtools/blob/24812e5542bb359a06a3e62379fd8c8633ae6034/src/devtools/views/components/ComponentInspector.vue#L87
const file = this.target.file.replace(/\\/g, '/')
The text was updated successfully, but these errors were encountered: