123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- list: {
- type: Array,
- default: () => defProps.swiper.list
- },
-
- indicator: {
- type: Boolean,
- default: () => defProps.swiper.indicator
- },
-
- indicatorActiveColor: {
- type: String,
- default: () => defProps.swiper.indicatorActiveColor
- },
-
- indicatorInactiveColor: {
- type: String,
- default: () => defProps.swiper.indicatorInactiveColor
- },
-
- indicatorStyle: {
- type: [String, Object],
- default: () => defProps.swiper.indicatorStyle
- },
-
- indicatorMode: {
- type: String,
- default: () => defProps.swiper.indicatorMode
- },
-
- autoplay: {
- type: Boolean,
- default: () => defProps.swiper.autoplay
- },
-
- current: {
- type: [String, Number],
- default: () => defProps.swiper.current
- },
-
- currentItemId: {
- type: String,
- default: () => defProps.swiper.currentItemId
- },
-
- interval: {
- type: [String, Number],
- default: () => defProps.swiper.interval
- },
-
- duration: {
- type: [String, Number],
- default: () => defProps.swiper.duration
- },
-
- circular: {
- type: Boolean,
- default: () => defProps.swiper.circular
- },
-
- previousMargin: {
- type: [String, Number],
- default: () => defProps.swiper.previousMargin
- },
-
- nextMargin: {
- type: [String, Number],
- default: () => defProps.swiper.nextMargin
- },
-
- acceleration: {
- type: Boolean,
- default: () => defProps.swiper.acceleration
- },
-
- displayMultipleItems: {
- type: Number,
- default: () => defProps.swiper.displayMultipleItems
- },
-
-
- easingFunction: {
- type: String,
- default: () => defProps.swiper.easingFunction
- },
-
- keyName: {
- type: String,
- default: () => defProps.swiper.keyName
- },
-
- imgMode: {
- type: String,
- default: () => defProps.swiper.imgMode
- },
-
- height: {
- type: [String, Number],
- default: () => defProps.swiper.height
- },
-
- bgColor: {
- type: String,
- default: () => defProps.swiper.bgColor
- },
-
- radius: {
- type: [String, Number],
- default: () => defProps.swiper.radius
- },
-
- loading: {
- type: Boolean,
- default: () => defProps.swiper.loading
- },
-
- showTitle: {
- type: Boolean,
- default: () => defProps.swiper.showTitle
- }
- }
- })
|