How to dynamically compile a component added to a template in VueJS?
问题 I am building a blog with VueJS 2. Most of my articles are stored as Markdown files, but I want to me able to cover some more advanced topics, using features that Markdown doesn't cover. I am considering making these special posts VueJS components that would be used in a template as <article-name> , or <special-article article-title="{{articleTitle}}"> . Pretty simple. I have the component loaded already, so all I need to do is compile the template string into a real template. I might be