Skip to content

Commit cf63c1d

Browse files
Add <tr> elements to TestUtilColumnGrow (#1217)
1 parent c83d89d commit cf63c1d

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

test/util/components/column-grow.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
<template>
22
<table v-if="render" v-show="visible" id="column-grow" class="table">
33
<thead>
4-
<th ref="th"></th>
5-
<th></th>
6-
<th></th>
4+
<tr>
5+
<th ref="th"></th>
6+
<th></th>
7+
<th></th>
8+
</tr>
79
</thead>
810
<tbody>
9-
<td><div :style="{ width: px(contentWidth) }"></div></td>
10-
<td></td>
11-
<td></td>
11+
<tr>
12+
<td><div :style="{ width: px(contentWidth) }"></div></td>
13+
<td></td>
14+
<td></td>
15+
</tr>
1216
</tbody>
1317
</table>
1418
</template>

0 commit comments

Comments
 (0)