如何在ElMessageBox标题前添加图标
<template>
<div>
<el-button @click="showMessageBox">显示消息框</el-button>
</div>
</template>
<script>
export default {
methods: {
showMessageBox() {
this.$alert('这是一条消息', '提示', {
customClass: 'message-box-with-icon'
});
}
}
}
</script>
<style>
.message-box-with-icon .el-message-box__header:before {
content: "图标";
display: inline-block;
margin-right: 10px;
}
</style>
原文地址: https://www.cveoy.top/t/topic/pEwr 著作权归作者所有。请勿转载和采集!