[Vuejs]-Error in v-on handler: "TypeError: Cannot read property '$createElement' of undefined"

1👍

First thing, name render() function differently. It’s reserved name since Vue component uses this one to render your template.

Second thing, pass to event only name of the method:

    <button @click="display">Render</button>

And it should work 🙂

Leave a comment