Function withModifiers()
For adding built-in v-on modifiers to an event
handler function
Example
import { h, withModifiers } from 'vue'
const vnode = h('button', {
// equivalent of v-on:click.stop.prevent
onClick: withModifiers(() => {
// ...
}, ['stop', 'prevent'])
})