I am trying to build a vue app that receives from the database some html as string just like the following example:
<b-field :label="field.nome" :message="field.message"><b-input :value="value" :type="field.type" :maxlength="field.maxlength" :expanded="true" v-model="inputValue"/></b-field>
So, as you can see, it may contains components, like the b-field from buefy. My question is, can I render this string as the actual buefy component and its behavior? It doesn't matter if it's in the template tag or via render function with JSX, I just want to know if I can do it and how.