how to link the set address to the right place during the second editing.
how to link the set address to the right place during the second editing.
listen on Model bound by popup
'popupVisible':{
handler(val){
if(val){
setTimeout(() => {//
this.$set(this.myAddressSlots[0],'defaultIndex',0);
}, 100);
}else{
this.$set(this.myAddressSlots[0],'defaultIndex',1);
}
}
}
roughly means: initialize the first item when it pops up. As for why the drop is set to 1 (1 is set at random), the purpose is that the defaultIndex will be different when it pops up again, and the defaultIndex will be different to initialize
.Previous: Add shipping address?
now want to implement a questionnaire question answering system. The current framework uses vue.js and mint-ui if you click the "No " radio option, it will jump to the specified question. if you select Yes, continue to answer the question. I don t ...
Clicking when selected is the current item will not jump, nor will it trigger an event. The requirement is how to jump to the home page routing after going to the child page of the home page when the selected is still the home page? Thank you all. <...