应用效果:

样式设置:
html
// 抽屉标题
:deep(.el-drawer__title) {
// 抽屉标题居中,但是如果在这里设置,就无法实现下面的抽屉关闭按钮居中,所以可以移到抽屉头部去设置抽屉标题居中
// display: flex;
// text-align: center;
// justify-content: center;
// 防止标题元素伸缩,抽屉关闭按钮居中
flex: none;
}