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