[Vuejs]-Vue.js import images

0👍

I think could be because you are setting the value for bg1url outsite of promise (calback function of axios), and so this make the code sync and not async

so please try to update, use this instead

created() {
    axios.get("http://localhost:5001/api/v1/pages").then(result => {
        this.page_data = result.data.page_data
        this.bg1url = require('@/assets/img/' + this.page_data.background1);
    });
},

Leave a comment