[Vuejs]-Handling errors from an array input field from Laravel with VuejS

0👍

You need to use bracket notation title['prop.0'] like you are accessing an array. this is what the results will be returned from Laravel because js doesn’t have multidimensional arrays. however, this is the work around.

Leave a comment