I have some SCSS which works fine when making a CSS file
.title {
background-image:linear-gradient(
to right bottom,
rgba($color-primary-light, 0.6), $color-primary-dark),
url(../imgs/img.jpg);
}
What I would like to do is dynamically pass the image to the CSS when rendered, based from an image gotten when mounted
<section class="title" :style="{ 'background-image': 'blog.coverImage' }">