How can i pass HTML to a component like this in VueJS and render it in the component
<my-vue-component> <div> ect... </div> </my-vue-component>
Slots are the way to go!
Made even more dynamic by named slots where you can target various positions in the component.