I create component dynamically:
<component is="tab"/>
How to add props for this component? I try:
<component is="tab" my-props="test" />
And I got error in console:
[Vue warn]: Attribute "type" is ignored on component <component> because the component is a fragment instance: http://vuejs.org/guide/components.html#Fragment-Instance
P.S. I'm using 1.0.26 version vue.js.