Search code examples
template-enginevue.jshtml-framework-7

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?


Solution

  • Use Vue delimiters to change the default {{}}

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

    So now your double curly braces are ignored by Vue.