I tried following the steps in this tutorial video but encountered an error message: [Vue warn]: Error in v-on handler: "ReferenceError: fb is not defined".
uploadImage(e){
let file = e.target.files[0];
var storageRef = fb.storage().ref('products/'+ file.name);
storageRef.put(file);
console.log(e.target.files[0]);
},