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
I am running Vue 2.1.0 standalone and this is what I had to use
Vue.options.delimiters = ['{[{', '}]}'];