comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
21 lines (20 loc) • 472 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
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]
};
exports.tableColumnProps = tableColumnProps;