I have following Vue 3 component image-template-row-item which has the prop templates-types
which is defined in the component in the props:
now this prop is always passed as undefined to the component while appears in the attrs:
so what am i missing here to make it work?
Props are usually normalized under the hood, camel-cased and kebab-cased props are mutually interchangeable. This doesn't apply to any random case.
It should be permissionsRoot
but not PermissionsRoot
, and so on.