[Vuejs]-Rendering table with VueJS2

3👍

The only tags permitted as direct children of tbody are tr.

You should be able to specify the component using

<tr is="association-item" ...>

to make the HTML legal. (It may need to be is="associationItem".)

👤Roy J

Leave a comment