I am looking to display a property in my component.
My template includes:
<v-flex v-for="c in components">
<component :is="c.component" v-bind="c.prop"></component>
</v-flex>
And in the script:
...
mounted(){
this.components.push({,
component: "input",
prop: {type:"checkbox", v-text:"My CheckBox"}
})
The setup works with any component or property. However, I encounter an issue when trying to render the v-text. This may be due to the -
How can I successfully render the v-text?