0👍
Does this help? You’re right that the JSX syntax is a bit different than regular Vue
https://github.com/vuejs/jsx#directives
<input vOn:click={this.newTodoText} />
- [Vuejs]-When using fortawesome, script5017 syntax error occurs in internet explorer 11
- [Vuejs]-How to write Jquery script in Vuejs
0👍
It seems RevoGrid is using JSX to build layout only and does not manage event listeners. It just ignores any non-standard HTML attributes. So I came up with using render functions instead of JSX.
Source:stackexchange.com