1 回答

TA貢獻1865條經驗 獲得超7個贊
slideinit
寫成計算屬性:
export default {
el: '#app',
data () {
return {
someList:[
{
title: 'slide1',
img: 'testimg-1.jpg',
},
{
title: 'slide2',
img: 'testimg-2.jpg',
},
{
title: 'slide3',
img: 'testimg-3.jpg',
}
]
}
},
components: {
slider
},
computed: {
slideinit () {
return {
pageNum: this.someList.length,
currentPage: 1,
canPre : false,
canNext: true,
start: {},
end: {},
tracking: false,
thresholdTime: 500,
thresholdDistance: 100,
}
}
添加回答
舉報