[Vuejs]-Vue render function not working correctly

0👍

the on property expects a plain object, not a class instance. To be precise, Vue uses for .. in to loop over the properties of that object, and that doesn’t work on class methods.

Why would you even use a class here?

Leave a comment