How to remove the event modifier added by vue?

in vue, event modifiers have been added, such as < form v-on:submit.prevent > < / form > . The
question is: how do I do this if I need to cancel the prevent event modifier after triggering a condition?

Apr.14,2021

The

modifier seems to be impossible to write directly to the event, but you can implement your requirements in this way

  <form v-on:submit="e => isPrevent && e.preventDefault()"></form>

isPrevent true triggers prevent

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b306ad-2bcf6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b306ad-2bcf6.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?