Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
253 views
in Technique[技术] by (71.8m points)

vue.js - Format date with moment vuejs

I hope you can help me, I need to show this format "2021-01-02" (YYY-MM-DD). but only show me 1 digit in month and day.

I have this in my app.js

var moment = require('moment');

getNow: function() {
          const today = new Date();
          const date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
          const date2 = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+(today.getDate()-1);
          const dateTime = date;
          const dateTime2 = date2;
          this.hoy = dateTime;
          this.ayer = dateTime2;

And I have this in my blade

hoy @{{hoy}} - ayer @{{ayer}}

show me this in my output:

hoy 2021-1-2 - ayer 2021-1-1

but I need to the format be "2021-01-02" because I need 2 digits for compare months and days

PD: Sorry for my english.

question from:https://stackoverflow.com/questions/65545861/format-date-with-moment-vuejs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Since you are using moment you can try:

const today = new Date();
this.hoy = moment(today).format('YYYY-M-D')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...