I am trying to set background image inside one of the vue component. I am using rails 6.
The images are located inside app/assets/images
folder.
The vue components are located inside app/javascripts/pages/Login.vue
The following code works:
<v-img :src="require('../../assets/images/logo.png')"/>
However, this does not work:
<v-flex xs3 :style="'background-image: url(' + require('../../assets/images/site-banner.png') + ')'">
...
</v-flex>
Any help is appreciated. Thanks.