antd vue 问题汇总


  • 开启左右箭头
  1. arrows 属性设为 true
 
	
1
2
3
4
  1. 或者: 自定义左右箭头,并添加点击事件,配合api
mothods:{
	next(){
		this.$refs.carouselRef.next()
	},
	prev(){
		this.$refs.carouselRef.prev()
	},
	goTo(){
		this.$refs.carouselRef.goTo(1)  // 去第几个面板
	}
}

相关