27 lines
618 B
JavaScript
27 lines
618 B
JavaScript
/*
|
|
* @Author : uview-next
|
|
* @Description : table 组件默认配置
|
|
* @version : 1.0
|
|
* @Date : 2024-01-01 00:00:00
|
|
* @LastAuthor : uview-next
|
|
* @lastTime : 2024-01-01 00:00:00
|
|
* @FilePath : /uview-next/libs/config/props/table.js
|
|
*/
|
|
|
|
export default {
|
|
// table-col组件
|
|
tableColumn: {
|
|
prop: '',
|
|
type: 'default',
|
|
headerAlign: 'left',
|
|
headerEllipsis: true,
|
|
label: '',
|
|
width: null,
|
|
minWidth: null,
|
|
sortable: false,
|
|
align: 'left',
|
|
show: true,
|
|
className: '',
|
|
customStyle: {}
|
|
}
|
|
} |