# formatDate

时间戳转换为日期

# 初始化

在需要使用的vue文件中引入

import { formatDate } from '@xiaoe/js-tools'
1

# 传参

/**
 * @param {string/number} time 需要转换为日期的时间戳
 * @param {number/string} type 0-转换为年月日 1-转换为年月日 时分秒 2-转换为时分秒
 */
1
2
3
4

# 效果

example: formatDate(1551334252272, 0)
return:2019-2-28

let time = formatDate(1551334252272, 0);
1