comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
48 lines (47 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const tableProps = {
data: Array,
border: Boolean,
size: String,
showHeader: {
type: Boolean,
default: true
},
height: String,
maxHeight: String,
headerRowClass: String,
headerCellClass: [String, Function],
rowClass: [String, Function],
cellClass: [String, Function],
headerRowStyle: Object,
headerCellStyle: [Object, Function],
rowStyle: [Object, Function],
cellStyle: [Object, Function],
stripe: Boolean,
stripeColors: Array,
highlightCurrentRow: Boolean,
highlightColor: String,
rowKey: String,
treeProps: Object,
indent: {
type: Number,
default: 15
},
lazy: Boolean,
load: Function,
showSummary: Boolean,
sumText: {
type: String,
default: "合计"
},
summaryMethod: Function,
spanMethod: Function,
nullSymbol: String
};
const tableEmits = {
"select-row": (value) => true,
"current-change": (value, oldValue) => true
};
exports.tableEmits = tableEmits;
exports.tableProps = tableProps;