How can I make dynamic meta data change the actual page source for SEO in Vue
I am currently changing the page title and (in the near future) meta data via Vue router like below: $route (to, from){ document.title = to.meta.title } This works fine when I inspect the title: <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible"…