feat: 前端显示 SQL 文件执行进度

This commit is contained in:
wanli
2023-10-10 09:24:49 +08:00
committed by kanzihuang
parent 41443dccc0
commit 7544288451
12 changed files with 407 additions and 96 deletions

View File

@@ -0,0 +1,14 @@
export const buildProgressProps = () : any => {
return {
progress: {
sqlFileName: {
type: String
},
executedStatements: {
type: Number
},
},
};
}