Gustavo Bissolli
Gustavo Bissolli

Reputation: 1571

APP + Framework7 + Vuejs

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

Answers (1)

Yerko Palma
Yerko Palma

Reputation: 12339

Use Vue delimiters to change the default {{}}

Vue.config.delimiters = ['@{', '}']

So now your double curly braces are ignored by Vue.

Upvotes: 4

Related Questions