30 lines
498 B
JavaScript
30 lines
498 B
JavaScript
const imageCdn = 'https://tdesign.gtimg.com/mobile/demos';
|
|
const swiperList = [
|
|
{
|
|
value: `${imageCdn}/swiper1.png`,
|
|
ariaLabel: '图片1',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper2.png`,
|
|
ariaLabel: '图片2',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper1.png`,
|
|
ariaLabel: '图片1',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper2.png`,
|
|
ariaLabel: '图片2',
|
|
},
|
|
];
|
|
|
|
Component({
|
|
data: {
|
|
current: 1,
|
|
autoplay: true,
|
|
duration: 500,
|
|
interval: 5000,
|
|
swiperList,
|
|
},
|
|
});
|