I’m currently evaluating vuejs and I like it a lot except for the use of a domain specific language used for the directives in the html templates. Is it (at least theoretically) possible use vuejs without the dns and specify the information in the directives programmatically in javascript?
Example:
Is there a way to specify a template like <a v-on:click="doSomething">...</a>
without the directive and the directive separately in JavaScript?