我在单个文件组件中使用Buefy Carousel List
from 。我需要将幻灯片的宽度从默认(476.25)更改为我自己的图像(176)。https://buefy.org/documentation/carousel#carousel-list
Gridsome
width
在Vue dev
工具中,我可以手动覆盖 data prop itmeWidth
。这显示正确,并且 Vue 开发工具显示计算的道具已更改为itemStyle: "width: 176px;"
如何将新宽度编码到组件中?我尝试过通过样式(.carousel-slide width: 176px)
、数据道具(itemWidth: 176)
和计算道具(itemStyle: "width: 176px;")
。所有都被忽略并应用默认宽度。