vue-msgbox
vue-msgbox copied to clipboard
Language default
Is there any option to switch the language? It defaults to Chinese right now and I don't want to pass through custom button labels for each single message.
You can try this:
import MessageBox from 'vue-msgbox';
MessageBox.defaults.confirmButtonText = 'OK';
MessageBox.defaults.cancelButtonText = 'Cancel';
OK, I see. Looks good!