I just found the v-el directive in Vue.js which is a great convenience for DOM-manipulation.
F.ex. I could mark an element with it:
<button v-el="getCustomerButton">Get customers</button>
and in the vue component use for example this.$$.getCustomerButton.focus() to focus the button.
Is there some equivalent to v-el in angularjs?
Regards, Niels.