mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-02-02 18:08:40 +08:00
fix(table): ensure the table setting button dividing line is hidden
This commit is contained in:
parent
37508ca411
commit
7c2f851692
@ -16,6 +16,8 @@
|
||||
|
||||
- 修复验证码组件警告问题
|
||||
- 修复表格不能正确的获取选中行
|
||||
- 修复全屏状态下 modal 高度计算错误
|
||||
- 修复部分表格样式问题
|
||||
|
||||
## 2.0.1 (2021-02-21)
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<div :class="`${prefixCls}__toolbar`">
|
||||
<slot name="toolbar"></slot>
|
||||
<Divider type="vertical" v-if="$slots.toolbar" />
|
||||
<Divider type="vertical" v-if="$slots.toolbar && showTableSetting" />
|
||||
<TableSetting :setting="tableSetting" v-if="showTableSetting" />
|
||||
</div>
|
||||
</template>
|
||||
|
@ -2,9 +2,7 @@
|
||||
<div class="table-settings">
|
||||
<RedoSetting v-if="getSetting.size" />
|
||||
<SizeSetting v-if="getSetting.redo" />
|
||||
|
||||
<ColumnSetting v-if="getSetting.setting" />
|
||||
|
||||
<FullScreenSetting v-if="getSetting.fullScreen" />
|
||||
</div>
|
||||
</template>
|
||||
|
Loading…
Reference in New Issue
Block a user