This is just a reminder of the naming conventions for Vue3:
- component name must be
PascalCase
, - Props, form the outside (in the HTML) must be
kebab-case
liketitle-value
, and they will be converted automatically incamelCase
(and not inPascalCase
) - events emitted must be
kebab-case