我在项目中使用Ant Design Calendar Component,并且将其设置如下:
当前“星期几”格式为dd
。例如。 Su
,Mo
,Tu
等
是否可以通过道具将格式更改为ddd
。例如。 Sun
,Mon
,Tue
等?
答案 0 :(得分:2)
不支持直接在ant设计组件上进行更改,
但是Ant Design在后台使用moment
,而locale.weekdaysMin
在使用moment
,因此您可以导入import moment from 'moment'
moment.updateLocale('en', {
weekdaysMin : ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
});
并进行更改:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flex Align</title>
<style>
#container {
background: #555 ;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
height: 600px;
align-items: baseline;
align-content: space-between;
}
.item-2 {
align-self: center;
}
.item {
background: #f4f4f4;
border: #ccc solid 1px;
padding: 1rem;
text-align: center;
margin: 0.5rem;
flex-basis: 200px;
}
</style>
</head>
<body>
<div id="container">
<div class="item item-1"><h3>Item 1</h3></div>
<div class="item item-2"><h3>Item 2</h3></div>
<div class="item item-3"><h3>Item 3</h3></div>
</div>
</body>
</html>