You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Asynchronously load image through Promise in vue js with directive
Create Global Directive
constvueApp=createApp({})constreplaceElementChildrenWithImage=async(el,binding)=>{try{constimage=awaitbinding.value;if(image)el.replaceChildren(image);}catch(err){console.error("Image can't be resolved seems like url is broken",err);}