在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();