Commit 02e77560624cc4a95a5a20ffd5e0601f1f88c6f4
Committed by
GitHub
1 parent
72f953c8
fix(): The Style of tableTitle slot (#1023)
Co-authored-by: 王英琦 <wangyingqi@91bihu.com>
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Table/src/components/TableHeader.vue
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | <div v-if="$slots.headerTop" style="margin: 5px"> |
4 | 4 | <slot name="headerTop"></slot> |
5 | 5 | </div> |
6 | - <div style="width: 100%; display: flex"> | |
6 | + <div class="flex items-center"> | |
7 | 7 | <slot name="tableTitle" v-if="$slots.tableTitle"></slot> |
8 | 8 | <TableTitle |
9 | 9 | :helpMessage="titleHelpMessage" | ... | ... |