1 export function formatDate (date, fmt) { 2 if (/(y+)/.test(fmt)) { 3 fmt = fmt.replace(RegExp.$1, (date.getFullYear() + ‘‘).substr(4 - RegExp.$1.length)) 4 } 5 let o = { 6 ‘M+‘: date.getMonth() + 1, 7 ‘d+‘: date.getDate(), 8 ‘h+‘: date.getHours(), 9 ‘m+‘: date.getMinutes(), 10 ‘s+‘: date.getSeconds() 11 } 12 for (let k in o) { 13 if (new RegExp(`(${k})`).test(fmt)) { 14 let str = o[k] + ‘‘ 15 fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : padLeftZero(str)) 16 } 17 } 18 return fmt 19 } 20 21 function padLeftZero (str) { 22 return (‘00‘ + str).substr(str.length)
vue中插入,js文件用的是export, vue文件引入的时候需要加{}
箭头对应的就是上面{}里面的
template中这样使用::
原文地址:https://www.cnblogs.com/midnight/p/8434402.html
时间: 2024-10-25 08:49:22