0

help, I need to format date 'YYYY-MM-DD' to 'DD.MM.YYYY' in vue js enter image description here

Arnur Kuatov
  • 193
  • 3
  • 5
  • 1
    Does this answer your question? [How to format a JavaScript date?](https://stackoverflow.com/questions/3552461/how-to-format-a-javascript-date) – Pierre Said Jun 13 '21 at 11:56

1 Answers1

1

You can write like this by using momentjs.

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.js"></script>
<div id="app">
  {{ moment(item.createdAt,'YYYY-MM-DD').format("DD.MM.YYYY") }}
</div>
hashito
  • 94
  • 6