In jQuery I can bind event to dynamically created child element:
$(staticAncestors).on(eventName, dynamicChild, function() {});
For example, I have table and want to append new row, when user places focus in the last row input:
$("#meta-panel").on("focus", ".input-row:last input", function (event) {
myVueApp.addMetaInputRow(); //pushes new row into array
});
How can I achieve this with Vue?