全局过滤器---时间戳

164 阅读1分钟

// 全局过滤器--时间戳格式化时间

// Vue.filter('自定义名称', function (data, spe = '/') {

//    data = new Date(data)

 

//    let year = data.getFullYear()

//    let month = data.getMonth() + 1

//    let day = data.getDate()

 

//    return ${year}${spe}${month}${spe}${day}

// })