tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
42 lines (41 loc) • 645 B
JavaScript
const e = {
data: {
type: Array,
default: () => []
},
columns: {
type: Array,
default: () => []
},
trHeight: {
type: String,
default: () => "40px"
},
align: {
type: String,
default: () => "left",
validator: (t) => ["left", "right", "center", ""].includes(t)
},
zebra: Boolean,
border: Boolean,
width: {
type: String,
default: () => "100%"
},
height: {
type: String,
default: () => "auto"
},
num: Boolean,
important: {
type: Array,
default: () => []
},
importantColor: {
type: String,
default: () => "#fdf5e6"
}
};
export {
e as Props
};