This question already has an answer here:
I want to use Vue.js with the Golang's HTML template engine but as both use {{ ... }}
for syntax, they conflict with each other...
Does anyone has already did it somehow or have any suggestions on how to overlap this problem?
Thanks in advance.
</div>
You can change delimiters used by Vue. Look the documentation
You can change the default delimiters for Go templates. Use:
func (t *Template) Delims(left, right string) *Template