|
- 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
- }
- }
- }
|