Element UI 轮播图如何隐藏箭头
您可以使用'show-arrow'属性来控制箭头的显示和隐藏。将其设置为'false'即可隐藏箭头。
示例代码:
<el-carousel :arrow='showArrow'>
<!-- 轮播内容 -->
</el-carousel>
data() {
return {
showArrow: false
}
}
原文地址: https://www.cveoy.top/t/topic/mIWq 著作权归作者所有。请勿转载和采集!