UNPKG

@varlet/ui

Version:

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

35 lines (34 loc) 576 B
import { defineListenerProp } from "../utils/components.mjs"; const props = { loop: { type: Boolean, default: true }, autoplay: [String, Number], duration: { type: [String, Number], default: 300 }, initialIndex: { type: [String, Number], default: 0 }, navigation: { type: [Boolean, String], default: false }, indicator: { type: Boolean, default: true }, indicatorColor: String, vertical: Boolean, touchable: { type: Boolean, default: true }, onChange: defineListenerProp() }; export { props };