可选
format: string = 'y年d天hh时mm分ss秒'dateDiff(new Date('2020-05-01'), new Date('2020-05-06')); // '0年5天00时00分00秒'
dateDiff(new Date('2020-05-01'), new Date('2020-05-06'), 'dd天 hh时mm分ss秒'); // '05天 00时00分00秒'
dateDiff(new Date('2020-05-06'), new Date('2020-05-01 3:20:10'), 'd天 hh时mm分ss秒'); // '5天 04时39分50秒'
dateDiff(new Date('2020-05-01'), new Date('2020-05-06'), 'd天 h时m分s秒'); // '5天 0时0分0秒'
比较两个日期相差年天时分秒
用于倒计时等,可与createTimeCountUp等搭配使用