Img onload does not execute?

created() {
    var img = new Image();
    img.onload = function() {
        console.log("load")
        document.body.appendChild(img);
    }
    img.src = "http://localhost:8080/assets/cat.jpeg";
},

not even in mounted (), call for help

Mar.13,2021

img.onerror also deal with it.


see what errors have been reported in your console


have you solved

Menu