We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I select MyComponent used in my dialog, the Vue tab of Google Devtools cannot find the component which prevents me from inspecting it
Even by browsing all the components in the inspector, it is not possible to find those of the dialogs of vuedl
import MyComponent from './MyComponent' let result = await this.$dialog.showAndWait(MyComponent, props)
Using the "Refresh" button does not correct the problem
To reproduce, go to https://iwdcf.csb.app/ and try to inspect the dialog opened when you click on "show card" in the dialog tab
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Does anyone know a workaround to get dialogs to show up in devtools?
Replace this.$dialog calls by <dialog v-if="bool"> components
this.$dialog
<dialog v-if="bool">
it already built for production mode, so it doesn't suppose to show in vue devetool.
No branches or pull requests
When I select MyComponent used in my dialog, the Vue tab of Google Devtools cannot find the component which prevents me from inspecting it
Even by browsing all the components in the inspector, it is not possible to find those of the dialogs of vuedl
Using the "Refresh" button does not correct the problem
To reproduce, go to https://iwdcf.csb.app/ and try to inspect the dialog opened when you click on "show card" in the dialog tab
The text was updated successfully, but these errors were encountered: