Reputation: 1571
Someone knows how to change the double brackets "{{" from Vuejs templating to another code? I am working on a app made with Framework7 and it's templating uses the same double brackets and I can't escape it to use on Vuejs!
Someone have any ideia or have a better solution?
Upvotes: 4
Views: 932
Reputation: 12339
Use Vue delimiters to change the default {{}}
Vue.config.delimiters = ['@{', '}']
So now your double curly braces are ignored by Vue.
Upvotes: 4