# Introduction
A Vue.js component for easy compiling and interpreting of HTML templates at runtime.
This is a simple library that makes use of the
vue-template-compiler
to generate a component on the fly from
a HTML string, which solves the template binding issues that you get with
the v-html
directive.
The Runtime Template Compiler
makes it easy to get a template
string either from a local variable or from a remote source, and then
compile and render it as a component using scope of the parent.
You do not need to use the use the with-compiler
version of
Vue.js, as this bundles the vue-template-compiler
. This is handy
as you might not want to use the runtime compiler in the whole
application. Using
Webpack
and code splitting you can ensure that the compiler is only fetched when
necessary.
Keep in mind that the template can only access the instance properties of the component that is using it.