File tree Expand file tree Collapse file tree 5 files changed +14
-6
lines changed Expand file tree Collapse file tree 5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 10
10
"dependencies" : {
11
11
"@ant-design/icons-vue" : " ^6.0.1" ,
12
12
"@vueuse/core" : " ^5.1.3" ,
13
- "ant-design-vue" : " 2.2.1 " ,
13
+ "ant-design-vue" : " 2.2.6 " ,
14
14
"axios" : " ^0.21.1" ,
15
15
"core-js" : " ^3.6.5" ,
16
16
"echarts" : " ^5.1.2" ,
17
17
"js-md5" : " ^0.7.3" ,
18
18
"lodash" : " ^4.17.21" ,
19
19
"marked" : " ^2.1.3" ,
20
20
"mockjs" : " ^1.1.0" ,
21
- "monaco-editor" : " ^ 0.25.2" ,
22
- "monaco-editor-webpack-plugin" : " ^ 4.0.0" ,
21
+ "monaco-editor" : " 0.25.2" ,
22
+ "monaco-editor-webpack-plugin" : " 4.0.0" ,
23
23
"register-service-worker" : " ^1.7.1" ,
24
24
"vue" : " ^3.0.0" ,
25
25
"vue-class-component" : " ^8.0.0-0" ,
Original file line number Diff line number Diff line change 21
21
</a-select-opt-group >
22
22
</template >
23
23
<template v-else >
24
- <a-select-option :value =" `${item.folder}`" :label =" `${item.title}`" >
24
+ <a-select-option
25
+ :value =" `${item.folder}`"
26
+ :label =" `${item.title}`"
27
+ :key =" `${item.folder}`"
28
+ >
25
29
{{ item.title }}
26
30
<span v-if =" item.hasPassword" class =" app-select-option_icon" ><LockOutlined /></span >
27
31
</a-select-option >
Original file line number Diff line number Diff line change 5
5
<div >{{ status }}</div >
6
6
</div >
7
7
<div >
8
- <p >ApiUrl: {{ error.config.baseURL }}{{ error.config.url }}</p >
8
+ <p
9
+ >ApiUrl: {{ error.config && error.config.baseURL }}{{ error.config && error.config.url }}</p
10
+ >
9
11
</div >
10
12
<div class =" error-message" >{{ message }}</div >
11
13
</div >
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export function useLoading(
32
32
const instance = createLoading ( props , undefined , true ) ;
33
33
34
34
const open = ( ) : void => {
35
- const t = unref ( target ) ;
35
+ const t = unref ( target as ElRef ) ;
36
36
if ( ! t ) return ;
37
37
instance . open ( t ) ;
38
38
} ;
Original file line number Diff line number Diff line change 9
9
}
10
10
.tags-wraper {
11
11
height : 130px ;
12
+ overflow : hidden ;
13
+ overflow-y : auto ;
12
14
.ant-tag {
13
15
margin-bottom : 10px ;
14
16
}
You can’t perform that action at this time.
0 commit comments