[Vuejs]-How to populate the current data in the edit form with (Axios, php and vue.js)

0👍

Your code should also work without the following code as blacklist is not used inside updateRecord():

   const blackList = {};
     formData.forEach(function(value, key){
      blackList[key] = value;
     });

Leave a comment