진스
vue에서 시간 타임 쉽게 표현 하기 본문
728x90
1번
console.log('tos',(new Date(Date.now() - (new Date()).getTimezoneOffset() * 60000)).toISOString().substr(0, 10));
console.log('tos2',new Date(new Date().getTime() - (new Date().getTimezoneOffset() * 60000)).toISOString().substr(0, 10));
vue에서 표현 하면 뷰티파이를 이용함.
<v-date-picker
:noTitle="true"
locale="ko"
:first-day-of-week="0"
:show-current="false"
v-model="date"
:day-format="date => $moment(date).format('DD')" // 01,02,03
:day-format="date => new Date(date).getDate()" // 1, 2, 3 정수
:day-format="date => $moment(date).format('dd')" // 'Sa','Su','Mo'
min="2021-01-06"
:max="$moment().format('YYYY-MM-DD')"
></v-date-picker>
data () {
return {
picker: (new Date(Date.now() - (new Date()).getTimezoneOffset() * 60000)).toISOString().substr(0, 10) ,
date : '',
}
created(){
this.date = this.$moment().format('YYYY-MM-DD');
},
2번
https://stackoverflow.com/questions/58568103/how-can-i-disable-all-sunday-on-datepicker
728x90
'JavaScript' 카테고리의 다른 글
제일 하단 스크롤(scrollTop)값 구하기 (0) | 2022.03.22 |
---|---|
touchstart , touchmove , touchend 터치이벤트 (0) | 2022.03.22 |
터치 이벤트 등록 및 좌표 확인 실시 - touchstart , touchmove , touchend (0) | 2021.11.04 |
익명 함수와 선언적 함수 (0) | 2021.10.06 |
(javascript/자바스크립트) 터치 이벤트 등록 및 좌표 확인 실시 - touchstart , touchmove , touchend (1) | 2021.09.30 |
Comments