comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
21 lines (20 loc) • 371 B
JavaScript
const tableColumnProps = {
type: {
type: String,
default: "default"
},
prop: String,
label: String,
align: String,
width: {
type: String,
default: (value) => {
return ["expand", "index", "selection"].includes(value.type) ? "50" : null;
}
},
fixed: [Boolean, String],
index: [Number, Function]
};
export {
tableColumnProps
};