[Vuejs]-How to assign unique IDs to inputs from an input form

0👍

You should have your node server create an entry and send back a unique id as a response to the POST request you are sending.

The ID can be the one issued by the database (depending on which db you are using) and then it’ll be part of the data object returned from the fetch.

Leave a comment