<!-- HTML --> <el-calendar v-model="value" :first-day-of-week="7"></el-calendar> <!-- CSS --> .el-calendar__header .el-calendar__title { position: absolute; left: 50%; transform: translate(-50%); font-size: 20px; color: #4e8cda; } .el-calendar-table thead th:before{ content: '周'; } .el-calendar__button-group { width: 100%; } .el-button-group { display: flex; justify-content: space-between; } .el-button-group::after, .el-button-group::before { content: unset; } .el-button-group>.el-button:not(:first-child):not(:last-child) { display: none; } .el-button-group>.el-button:first-child:before{ content: '<'; } .el-button-group>.el-button:last-child:before{ content: '>'; } .el-button-group>.el-button:first-child span, .el-button-group>.el-button:last-child span{ display: none; }点击预览
点击预览