今天项目需求需要改modal标题样式,查询api发现支持插槽,效果及代码如下:
<template>
<div>
<a-modal
v-model:visible="visible"
@ok="handleOk"
@cancel="cancel"
:body-style=""
>
<template #title>
<span class="custom-header">标题内容</span>
</template>
</a-modal>
</div>
</template>
<style lang="less" scoped>
.custom-header {
font-size: 14px;
}
</style>