[Vuejs]-Uploading image to firebase without error, but image not appearing on Storage

0👍

Sir in my little knowledge 


//For your html code
<div id="appimg">
	   <ol>
		<li v-for="img in imgs"><img class="card-img-top" src="{{img}}" 			alt="no Image"></li>
	   </ol>
   </div>


// ad with js
const vimg = new Vue({
  el: '#appimg',
  data: {
	imgs: payload.files
  },
  
});

Leave a comment