Is there a method to customize the close button in el-dialog and replace it with my own design?
For instance, can I change the default close button located at the top left corner of the dialog?
<el-dialog
title="Tips"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose">
<span>My custom close button</span> # my custom close button placed at the left top corner.
</el-dialog>