[Vuejs]-Vue 2.0 server-side-render with template inside #app container

0๐Ÿ‘

Is it possible somehow to provide template inside container and in the same time pre-render it? Or

Short but complete answer: No. For Vue SSR, you cannot use in-DOM templates. You have to use string-based templates (including Single File Components).

Leave a comment