Prevent HTML <dialog> from closing with Vue
I'm trying to use Vue to programmatically prevent an HTML dialog element's close event from closing the dialog. Here's the code I'm working with: import {ref} from 'vue'; const dialogTemplateRef = ref(); //I want this toggle to prevent it from…