[Vuejs]-Vue: Why is my dialog not showing up when the right condition is set?

0👍

I realized that having the dialog inside the button was the problem.
Instead of having <button ... <dialog></dialog> </button>, having <button><dialog> solved the problem.

Leave a comment