Commit 83c98e775d5e09b900b44f7ecc94091123105518
Committed by
GitHub
1 parent
12fd2dc5
Update cell.vue
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
src/components/table/cell.vue
... | ... | @@ -4,7 +4,6 @@ |
4 | 4 | <template v-if="renderType === 'selection'"> |
5 | 5 | <Checkbox :value="checked" @on-change="toggleSelect" :disabled="disabled"></Checkbox> |
6 | 6 | </template> |
7 | - | |
8 | 7 | <template v-if="renderType === 'html'"><span v-html="row[column.key]"></span></template> |
9 | 8 | <template v-if="renderType === 'normal'"><span>{{row[column.key]}}</span></template> |
10 | 9 | <template v-if="renderType === 'expand'"> | ... | ... |