UNPKG

bin-ui

Version:

基于 vue2.6 / vue-cli3 的 UI 组件库

13 lines (11 loc) 313 B
// 获取一个日期的年月日 export function getNewDate(date) { let year = date.getFullYear() let month = date.getMonth() let day = date.getDate() return { year, month, day } } // 根据年月日转换成日期类型 export function getDate(year, month, day) { return new Date(year, month, day) }