In html table row, based on condition, need to update the row with SPAN or NA as below. But, vue onclick is unable to get work.
new Vue({
el: '#app',
methods: {
onSelect:function(row){
if(row["id"] > 10) {
row["data"]= '<span v-on:click="onclick">Process</span>'
}
else {
row["data"]= 'NA';
}
},
onclick() {
//do operations
console.log('click');
}
}
})
How above click event can be work.