Element-ui form validates complex objects, which contain objects contained in an array

ask for instructions on how to verify the objects in the array in the object.
to verify dataForm.phones [0] .brand

< el-form
< el-form-item.

data are as follows:

data() {
    return {
      dataFrom: {
        name: "",
        computer: { brand: "intel", model: "E3-1231" },
        phones: [
          { brand: "", model: "P9" },
          { brand: "", model: "MI8" }
        ]
      }
    }
  }
Mar.14,2021

Thank you codeshelper, thank you @ Yang ah,
https://codeshelper.com/a/11. is getting the answer

Menu