feat: 默认开启纵向边框
This commit is contained in:
parent
5def66cf5c
commit
e9d2daa3af
|
@ -27,6 +27,7 @@
|
|||
</el-table-column>
|
||||
</template>
|
||||
<el-table-column min-width="1"></el-table-column>
|
||||
|
||||
<template #empty>
|
||||
<el-empty :description="emptyText" :image-size="100"></el-empty>
|
||||
</template>
|
||||
|
@ -45,6 +46,7 @@
|
|||
</el-button>
|
||||
<el-popover v-if="column" placement="top" title="列设置" :width="500" trigger="click" :hide-after="0"
|
||||
@show="customColumnShow = true" @after-leave="customColumnShow = false">
|
||||
|
||||
<template #reference>
|
||||
<el-button icon="el-icon-set-up" circle style="margin-left: 15px"></el-button>
|
||||
</template>
|
||||
|
@ -52,6 +54,7 @@
|
|||
@save="columnSettingSave" @back="columnSettingBack" :column="userColumn"></columnSetting>
|
||||
</el-popover>
|
||||
<el-popover v-if="!hideSetting" placement="top" title="表格设置" :width="400" trigger="click" :hide-after="0">
|
||||
|
||||
<template #reference>
|
||||
<el-button icon="el-icon-setting" circle style="margin-left: 15px"></el-button>
|
||||
</template>
|
||||
|
@ -149,7 +152,7 @@ export default {
|
|||
summary: {},
|
||||
config: {
|
||||
size: this.size,
|
||||
border: this.border,
|
||||
border: true,
|
||||
stripe: this.stripe,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue