Get the value in the corresponding input when ElementUI checkbox is selected

to publish a product, there is a dynamic form: checkbox corresponds to two input input boxes, and when checkbox is selected, get the values of the corresponding two input. Then an CheckBox and two corresponding input are automatically generated below. and so on. Now it is stuck in how to get the values of the corresponding two input when checkbox is selected! Ask the gods to give the plan


it's not easy to put the binding values of checkbox and two input on the same object, like this

.
list: [
  {
    checked: false,
    value1: '',
    value2: ''
  },
],

then use this list to cycle out is checkbox corresponds to two input input boxes , checkbox when list and then push a new

list.push({
  checked: false,
  value1: '',
  value2: ''
})

object goes in

Menu