the official document is as follows:
<checklist title="" :options="commonList" v-model="fruitID"></checklist>
{{fruitID}}
commonList:[ "China", "Japan", "America" ]
but the actual project data will not be like this. It will definitely carry id, as follows
commonList:
[
{
id:1,
name:""
},
{
id:2,
name:""
}
],
in this way, I will pass the selected id to the background
Thedocument does not specify whether anyone has used this framework and how to get the corresponding id?.