read an example of the official document:
{{movieID}}
<mt-radio
v-model="movieID"
:options="list_movie">
</mt-radio>
-------
list_movie:["","",""]
question:
the data of the actual project is definitely not like this, and a json will be returned
[
{
id:1,
name:""
},
{
id:2,
name:""
}
]
if this is the data
how can I render it? How to get the corresponding id?