[Vuejs]-Add a Dynamically added field inside a dynamically added field in vue js?

0👍

There was some problem in your array push.

your data should be like this:

data: {
       rows: {
           title:  '',
           description: [{
               name: '',
               age: '',
           }]
       }
  },

Please have a look on this codepan: https://codepen.io/emtiazzahid/pen/MqXwPv
Its work fine

Leave a comment