I want to change the {{ something }} by <% something %> in Vue.js, how could I achieve that, is it even possible?
{{ something }}
<% something %>
An equivalent for w
You should modify the delimiters property of configuration object.
Vue.config.delimiters = ['<%', '%>']
Edit: This solution works for Vue 1.x and lower. See @Skip and @jaynabonne responses for Vue 2.x solution