123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- export default {
- props: {
-
- list: {
- type: Array,
- default: uni.$u.props.swiper.list
- },
-
- indicator: {
- type: Boolean,
- default: uni.$u.props.swiper.indicator
- },
-
- indicatorActiveColor: {
- type: String,
- default: uni.$u.props.swiper.indicatorActiveColor
- },
-
- indicatorInactiveColor: {
- type: String,
- default: uni.$u.props.swiper.indicatorInactiveColor
- },
-
- indicatorStyle: {
- type: [String, Object],
- default: uni.$u.props.swiper.indicatorStyle
- },
-
- indicatorMode: {
- type: String,
- default: uni.$u.props.swiper.indicatorMode
- },
-
- autoplay: {
- type: Boolean,
- default: uni.$u.props.swiper.autoplay
- },
-
- current: {
- type: [String, Number],
- default: uni.$u.props.swiper.current
- },
-
- currentItemId: {
- type: String,
- default: uni.$u.props.swiper.currentItemId
- },
-
- interval: {
- type: [String, Number],
- default: uni.$u.props.swiper.interval
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.swiper.duration
- },
-
- circular: {
- type: Boolean,
- default: uni.$u.props.swiper.circular
- },
-
- previousMargin: {
- type: [String, Number],
- default: uni.$u.props.swiper.previousMargin
- },
-
- nextMargin: {
- type: [String, Number],
- default: uni.$u.props.swiper.nextMargin
- },
-
- acceleration: {
- type: Boolean,
- default: uni.$u.props.swiper.acceleration
- },
-
- displayMultipleItems: {
- type: Number,
- default: uni.$u.props.swiper.displayMultipleItems
- },
-
-
- easingFunction: {
- type: String,
- default: uni.$u.props.swiper.easingFunction
- },
-
- keyName: {
- type: String,
- default: uni.$u.props.swiper.keyName
- },
-
- imgMode: {
- type: String,
- default: uni.$u.props.swiper.imgMode
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.swiper.height
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.swiper.bgColor
- },
-
- radius: {
- type: [String, Number],
- default: uni.$u.props.swiper.radius
- },
-
- loading: {
- type: Boolean,
- default: uni.$u.props.swiper.loading
- },
-
- showTitle: {
- type: Boolean,
- default: uni.$u.props.swiper.showTitle
- }
- }
- }
|