在vue中獲取當前日期的方法:1.新建vue.js項目;2.使用import方法導入時間日期組件;3.執行代碼獲取當前日期;
具體步驟如下:
1.首先,在vue-cli中創建一個vue.js項目;
vue create project-name
2.vue.js項目創建好后,在項目中使用import方法導入時間日期組件;
import {
getDateTime,
getWeekStartDate,
getWeekEndDate,
getMonthStartDate,
getMonthEndDate,
dayThree,
monthSix,
YearOne,
} from "../utils/date";
3.最后,時間日期組件導入好后,在項目中執行以下代碼即可獲取當前日期;
1)獲取當前日期
var now = new Date();
2)獲取當前日
var nowDay = now.getDate();
3)獲取當前月
var nowMonth = now.getMonth();
4)獲取當前年
var nowYear = now.getYear();
5)獲取當前時間戳
var unixtime=new Date().getTime();