tyh-ui2
Version:
The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.
23 lines (22 loc) • 337 B
JavaScript
const e = {
bottom: {
type: String,
default: () => "50px"
},
right: {
type: String,
default: () => "50px"
},
beyond: {
type: Number,
default: () => 100
},
behavior: {
type: String,
default: () => "smooth",
validator: (t) => ["smooth", "auto"].includes(t)
}
};
export {
e as Props
};