comand-component-library 4.1.74 → 4.1.75
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -36,9 +36,7 @@
|
|
36
36
|
</caption>
|
37
37
|
<thead>
|
38
38
|
<tr>
|
39
|
-
<th v-for="(tablehead, indexHead) in tableData.thead" :key="indexHead">
|
40
|
-
{{ tablehead }}
|
41
|
-
</th>
|
39
|
+
<th v-for="(tablehead, indexHead) in tableData.thead" :key="indexHead" v-html="tablehead"></th>
|
42
40
|
</tr>
|
43
41
|
</thead>
|
44
42
|
<transition :name="useTransition ? 'fade' : null">
|
@@ -46,8 +44,7 @@
|
|
46
44
|
<tr :class="{'active' : tableData.rowIndexHighlighted === indexRows}"
|
47
45
|
v-for="(tablerows, indexRows) in tableData.tbody" :key="indexRows">
|
48
46
|
<td :class="{'active' : tableData.columnIndexHighlighted === indexData}"
|
49
|
-
v-for="(tabledata, indexData) in tablerows" :key="indexData">
|
50
|
-
{{ tabledata }}
|
47
|
+
v-for="(tabledata, indexData) in tablerows" :key="indexData" v-html="tabledata">
|
51
48
|
</td>
|
52
49
|
</tr>
|
53
50
|
</tbody>
|
@@ -56,8 +53,7 @@
|
|
56
53
|
<tfoot v-if="tableData.tfoot && tableData.tfoot.length && showTableData" aria-expanded="true">
|
57
54
|
<tr>
|
58
55
|
<td :class="{'active' : tableData.columnIndexHighlighted === indexFoot}"
|
59
|
-
v-for="(tablefoot, indexFoot) in tableData.tfoot" :key="indexFoot">
|
60
|
-
{{ tablefoot }}
|
56
|
+
v-for="(tablefoot, indexFoot) in tableData.tfoot" :key="indexFoot" v-html="tablefoot">
|
61
57
|
</td>
|
62
58
|
</tr>
|
63
59
|
</tfoot>
|