press-next
Version:
Vue3 组件库,支持 Composition API
28 lines (23 loc) • 584 B
text/typescript
/*
* desc: 迷你倒计时组件Mock数据
* date: 2025-11-14
* author: alltasxiao
* email: alltasxiao@tencent.com
*/
export function getMockData() {
// 组件属性配置 - 默认展示月模式(2个月15天10小时)
const componentProps = {
time: 2 * 30 * 24 * 60 * 60 * 1000 + 15 * 24 * 60 * 60 * 1000 + 10 * 60 * 60 * 1000,
monthLabel: '月',
dayLabel: '天',
hourLabel: '时',
minuteLabel: '分',
secondLabel: '秒',
separator: ':',
};
return componentProps;
}
const DEMO_DATA = {
...getMockData(),
};
export default DEMO_DATA;