How do I save some values when Vue v-for traverses?

<div class="personal" v-for="(user, index) in allDate" :key="index" >

code as above, the traversing user object has an OpenID value. In data, set openid to receive, but how to assign the value to the openid in data?

Oct.20,2021

iterate through the openid value of user in the beforeCreate hook of vue and assign it to the openid of data

<div class="personal" v-for="(user, index) in allDate" :key="index" @click="doSomeThing(user.openid)">

vue:
methods: {
    doSomeThing(openid) {
        this.data.openid = openid;
    }
}

you can traverse the assignment after the allDate data is pulled down.

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-1b42a1a-2c61e.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-1b42a1a-2c61e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?