How does vue traverse the array?

the data given by the backend is as follows:

data:[
    {
        id:1,
        name:"",
        checked:true,
        children:[
            {
                id:11,
                name:"",
                checked:true
            },
            {
                id:12,
                name:"",
                checked:true
            }
        ]
    },
    {
        id:2,
        name:"",
        checked:false,
    }
]

Q:
how to use vue to iterate through an array to determine whether checked is true, or not. If it is true, print the corresponding id.
as printed above, the result is: [1mem11jue 12]


print. Huh? Or show. Huh?
if you print with console.log () , it has nothing to do with Vue, just js traversal.

 {{item.id}}</div>
    </div>
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32f07-2be3b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32f07-2be3b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?