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 🙂
Source:stackexchange.com