Vue.component('CompA', {
template: `<div>CompA</div>`
});
const vm = new Vue({
el: '#app'
});
<div id="app">
<!-- 不加is属性,直接应用组件 -->
<table>
<comp-a></comp-a>
</table>
<!-- 使用is属性 -->
<table>
<tr is="CompA"></tr>
</table>
</div>
table {
background: pink;
}