I created a simple UI in vue.js and I want to call that page on my golang backend, the reason is I want to use both vue.js built in template and hugo template and also for routing.
If you use standard html, css, js then you just create a template in golang:
t := template.New("")
t, _ = t.ParseFiles("/folder/myhtml.html")
_ = t.ExecuteTemplate(w, "myhtml.html, myData)
How do I create something like this with golang + vue.js and also I currently don't want to use vue router cause I only want one open server and not one for the backend and another one for the front end.