[Vuejs]-Vue-server-renderer – invalid expression when trying to interpolate template e.g. with title or meta data

0👍

Looking at the section on Template Interpolation in SSR guide. I think {{{title}}} in your code ought to be {{title}} (two instead of three curly brackets) since its just a string and not HTML.

The forward slash in <meta/> probably needs to be escaped.

👤Justin

Leave a comment