@varlet/ui
Version:
A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
18 lines (17 loc) • 309 B
JavaScript
import { defineListenerProp } from "../utils/components.mjs";
const props = {
active: {
type: [String, Number],
default: 0
},
direction: {
type: String,
default: "horizontal"
},
activeColor: String,
inactiveColor: String,
onClickStep: defineListenerProp()
};
export {
props
};