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
Use this code to change template engine in vue js
new Vue({ el: '#app', data: { message: 'hello world' } , delimiters: ['<%' , '%>'] });