[Vuejs]-Vue.js – Getting data from multiple keys in an object

5👍

You can do this by several ways e.g:

watch : {
    itemSelection: function(val) { ... }
}

There is some examples. Check this fiddle

👤Alex

Leave a comment