I have some code that works with Angular, that does not work with Vue.js.
bodyElement.style.setProperty('background-image', 'url(./assets/pictures/pexels-chevanon-photography-1108099.jpg)');
bodyElement.style.setProperty('background-size', 'cover');
Here is the Angular file tree structure and the Vue.js file tree structure.
How can I debug the issue?
Background issue solved: I placed the background picture in the "public" folder.