vue3数字秒转换为时分秒格式
// 数字秒转换为时分秒格式
function formatSeconds(seconds: number) {
const h = Math.floor(seconds / 3600)
.toString()
.padStart(2, '0');
const m = Math.floor((seconds % 3600) / 60)
.toString()
.padStart(2, '0');
const s = Math.floor(seconds % 60)
.toString()
.padStart(2, '0');
return `${h}:${m}:${s}`;
}