I am using Buefy Carousel List
from https://buefy.org/documentation/carousel#carousel-list
in a Gridsome
single file component. I need to change the width of the slides from the default (476.25) to the width
of my own images (176).
In Vue dev
tools, I can manually override the data prop itmeWidth
. This displays correctly and Vue dev tools shows that the computed prop has been changed to itemStyle: "width: 176px;"
How do I code the new width into the component? I have tried via styling (.carousel-slide width: 176px)
, data props (itemWidth: 176)
and computed props (itemStyle: "width: 176px;")
. All are ignored and the default width is applied.