| How is this example from vue docs: <a v-on:click="doSomething"> preferable to the jsx version: <a onClick={doSomething}> or even this loop example from the vue docs: <li v-for="item in items">
{{ item.message }}
</li>
better than its jsx counterpart? items.map(item => (
<li key={item.id}>{item.message}</li>
))
|