I do have my component called Grid. Inside this component I load JSON data from server and i render them. They are mostly string and integers. Sometimes the JSON contains HTML like <strong>myvalue</stong>
so I render the data with three brackets {{{
and }}}
.
The thing is when the HTML is not pure HTML but component like <my-component my-param="1"></my-component>
. How to tell to Vue.js to render this coponent? All I get is the HTML purely printed into grid.
Thanks