Home

Published

- 1 min read

npm install moment in vue

img of npm install moment in vue

The solution for this is noted below

npm install moment in vue

Solution

   //We can use for date format
npm install moment
//Or
npm install moment --save
//Or
npm i moment --save

//Use in vue
import moment from 'moment';

{{ moment(user.created_id).format('YYYY-MM-DD') }}

Try other methods by searching on the site. That is if this doesn’t work