How would one pass multidimensional array of inputs from html to vue.js to be displayed on the same page in a table. I would like to know if it is possible to accomplish something as such using this new framework. I can accomplish this using jquery and pure JavaScript, but i am clueless when it comes to vue.js.
The online articles are not helpful as they do not touch this topic. they barely skimmed the surface of arrays in vue.js, in particular multidimensional. I am aware though that there arn't many avenues of help when it comes to this framework as it is new.
I am certain one of you brilliant developers here, has accomplished this task before and is will to share your code.
example:
<div id="app">
<input type="text" name="test[0][]">
<input type="text" name="test[0][]">
<input type="text" name="test[1][]">
<input type="text" name="test[1][]">
</div>