t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
33 lines (32 loc) • 433 B
JavaScript
const t = {
list: {
type: [],
default: () => []
},
type: {
type: String,
default: () => "flex"
},
cols: {
type: Number,
default: () => 2
},
minWidth: {
type: Number,
default: () => 200
},
rowGap: {
type: String,
default: () => "0px"
},
colGap: {
type: String,
default: () => "0px"
}
}, e = {
"scroll-end": () => null
};
export {
e as Emits,
t as Props
};