mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
修复:高级表格部分api默认值错误问题;🐛
fix: wrong default value of some api about AdvanceTable.vue;
This commit is contained in:
parent
e661ae0813
commit
c2915c93d3
@ -32,7 +32,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<a-table
|
||||
v-bind="{...this.$props, columns: visibleColumns, title: undefined, loading: false}"
|
||||
v-bind="{...$props, columns: visibleColumns, title: undefined, loading: false}"
|
||||
:size="sSize"
|
||||
@expandedRowsChange="onExpandedRowsChange"
|
||||
@change="onChange"
|
||||
@ -62,7 +62,7 @@
|
||||
props: {
|
||||
tableLayout: String,
|
||||
bordered: Boolean,
|
||||
childrenColumnName: Array[String],
|
||||
childrenColumnName: {type: String, default: 'children'},
|
||||
columns: Array,
|
||||
components: Object,
|
||||
dataSource: Array,
|
||||
@ -81,7 +81,7 @@
|
||||
rowKey: [String, Function],
|
||||
rowSelection: Object,
|
||||
scroll: Object,
|
||||
showHeader: Boolean,
|
||||
showHeader: {type: Boolean, default: true},
|
||||
size: String,
|
||||
title: String,
|
||||
customHeaderRow: Function,
|
||||
|
Loading…
x
Reference in New Issue
Block a user