1
0
mirror of https://github.com/fumiama/paper-manager.git synced 2026-06-26 05:42:23 +08:00

add filelist

This commit is contained in:
源文雨
2023-03-14 17:54:06 +08:00
parent 8d619e923b
commit aab733ab0b
12 changed files with 313 additions and 138 deletions

View File

@@ -0,0 +1,17 @@
export const cardList = (() => {
const result: any[] = []
for (let i = 0; i < 6; i++) {
result.push({
id: i,
title: 'Vben Admin',
description: '基于Vue Next, TypeScript, Ant Design Vue实现的一套完整的企业级后台管理系统',
datetime: '2020-11-26 17:39',
extra: '编辑',
icon: 'logos:vue',
color: '#1890ff',
author: 'Vben',
percent: 20 * (i + 1),
})
}
return result
})()