[Vuejs]-How to use on scroll with render function in VueJS?

0👍

You should try this:

createElement('div', {
       class': 'main',
       on: {
           scroll: this.someMethod
       }
},

documents render functions

Leave a comment