Can I customize html in the mint-ui MessageBox component?

can you customize html like element in the mint-ui MessageBox component

May.01,2022

took a look at the document, and the usage should look like this:

MessageBox({
  title: 'Notice',
  message: 'Are you sure?',
  showCancelButton: true
});

looking at his source code (as shown in the following figure), you can see that message uses a custom html. The source portal: https://github.com/ElemeFE/mi...

Menu