Has anyone successfully fused Go templates with VueJS for data-binding in a single project?
I am interested in leveraging VueJS specifically for handling Ajax requests, as manual methods or using jQuery tend to clutter my code.
To illustrate further, imagine having a simple <p>
tag populated from a Go template:
{{.Color}}
Now the goal is to establish a binding to that value using VueJS:
{{someVariable}}
Both references pertain to the same tag element.