Here I have code of one block into mySlide
<div :style="{
'background-image': `url('~@/assets/img/${slide[2].src}')`,
'background-color': '$tertiary-light-gray',
}"
class="carouselSlide__line__block imageBlock">
</div>
I should do set background-image and upper that semi-opacity background-color
How I should done this?
Using SCSS inside a style attribute does not work. You can use
v-bind
in your css to set your values.