驼峰式命名时要注意的事项:
<table>在 table 的 tr 元素中放置了一个 my-component 自定义元素,props 中 propA 在 HTML 代码中必须写成 prop-a, 注意 js 中所有驼峰式命名属性在 HTML 中均须写成小写字母短横分隔的形式
<tr>
<my-component prop-a="My component in a table"></my-component>
</tr>
</table>
驼峰式命名时要注意的事项:
<table>在 table 的 tr 元素中放置了一个 my-component 自定义元素,props 中 propA 在 HTML 代码中必须写成 prop-a, 注意 js 中所有驼峰式命名属性在 HTML 中均须写成小写字母短横分隔的形式
<tr>
<my-component prop-a="My component in a table"></my-component>
</tr>
</table>