21 lines
429 B
JavaScript
21 lines
429 B
JavaScript
|
|
const imageCdn = 'https://tdesign.gtimg.com/mobile/demos';
|
||
|
|
const swiperList = [
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
`${imageCdn}/swiper2.png`,
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
`${imageCdn}/swiper2.png`,
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
];
|
||
|
|
|
||
|
|
Component({
|
||
|
|
data: {
|
||
|
|
current: 2,
|
||
|
|
autoplay: true,
|
||
|
|
duration: 500,
|
||
|
|
interval: 5000,
|
||
|
|
paginationPosition: 'bottom-right',
|
||
|
|
swiperList,
|
||
|
|
navigation: { type: 'fraction' },
|
||
|
|
},
|
||
|
|
});
|