프론트에서 날짜 형식 바꾸기

팡태(❁´◡`❁)·2022년 5월 25일
0

프론트

목록 보기
17/20
  • dayjs 설치

날짜 형식 바꾸기

import dayjs from 'dayjs';

  • 1개
    const date = () => {
      state.bregdate1 = dayjs(state.items.bregdate).format('YY.MM.DD hh:mm:ss');
    }
    date()

  • 배열
    const date1 = (i) => {
      console.log(state.reply[i].reregdate);
      state.reply[i].reregdate1 = dayjs(state.reply[i].reregdate).format('YY.MM.DD hh:mm:ss');
    }
for(var i = 0; i<state.reply.length; i++){
	date1(i);
}

0개의 댓글