添加分页功能、打包优化、ts编译优化

This commit is contained in:
周炽键
2021-07-23 21:34:47 +08:00
parent fd85fcef74
commit 6a1f9a3f6b
15 changed files with 3340 additions and 141 deletions

6
utils/id.ts Normal file
View File

@@ -0,0 +1,6 @@
import { v4 as uuid } from 'uuid'
import md5 from 'md5'
export function md5_uuid ():string {
return md5(uuid())
}