questions about mint-ui Picker components
I am now in such a business scenario, click a button and pop up a picker for the user to choose from. Picker has several options
slots: [{values: ["", "", "", "", "", ""]}]
when I want to listen for changes to the data, I get which value the user chose. When the user clicks the button for the first time, then Picker pops up. If he just wants to choose the first option, "Shenzhen", then he clicks on picker this time will not trigger the onValueChange event, I will not know that he chose the first option.
mt-picker
doesn"t seem to bind v-model
automatically, you need to set the value manually through the onValueChange event, but how to solve this situation now?