In vue, can events be bubbled after they are removed?

The

parent element binds a click event through the on ("click") method, and the child element binds a click event through v-on .

when the parent element is clicked, the handler of the parent element"s click event is triggered. The click event of the parent element is removed in handler through the off () method, when the child element is clicked, a bubble occurs and the handler of the parent element is executed.

Why?

Mar.22,2021

that's because the JS of your element is still alive when the vue lifecycle die falls.

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-1b3cdcc-2bac5.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-1b3cdcc-2bac5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?