Does the .passive modifier in Vue really work?

<div v-on:scroll.passive="onScroll">...</div>
The

.passive modifier indicates that the onScroll event is triggered after completion, but the test is invalid. What"s the reason?

Dec.06,2021

definition of scroll events on MDN:
The scroll event fires when the document view or an element has been scrolled.

scroll itself is triggered after scrolling, but the trigger frequency is too high.

passive tells the browser that the listener will not call the e.preventDefault () function. Instead of checking, it can generate gestures in advance to improve fluency, which is usually used in move events.

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