UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

34 lines (33 loc) 605 B
import { iconProps } from "../icon/index.mjs"; import { pickProps } from "../utils/components.mjs"; const props = { type: { type: String, default: "default" }, position: { type: String, default: "right-top" }, hidden: Boolean, value: { type: [String, Number], default: 0 }, maxValue: [String, Number], dot: Boolean, icon: pickProps(iconProps, "name"), namespace: pickProps(iconProps, "namespace"), color: String, offsetX: { type: [String, Number], default: 0 }, offsetY: { type: [String, Number], default: 0 } }; export { props };