@varlet/ui
Version:
A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
24 lines (23 loc) • 484 B
JavaScript
import { defineListenerProp } from "../utils/components.mjs";
const props = {
modelValue: Boolean,
disabled: Boolean,
animationDuration: {
type: [Number, String],
default: 300
},
successDuration: {
type: [Number, String],
default: 2e3
},
bgColor: String,
successBgColor: String,
color: String,
successColor: String,
target: [String, Object],
onRefresh: defineListenerProp(),
"onUpdate:modelValue": defineListenerProp()
};
export {
props
};