[Vuejs]-Vuejs config multiple data source

0👍

You can modify the function in your back end to accept an object containing both the upload and cash, so the first line of your updateBank method on the front end will look like:

axios.put('/updatebank', { this.upload, this.cash })

Leave a comment