@varlet/ui
Version:
A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
20 lines (19 loc) • 322 B
JavaScript
import { defineListenerProp } from "../utils/components.mjs";
const props = {
gutter: {
type: [String, Number, Array],
default: 0
},
justify: {
type: String,
default: "flex-start"
},
align: {
type: String,
default: "flex-start"
},
onClick: defineListenerProp()
};
export {
props
};