File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -128,13 +128,13 @@ Show a full screen animation while loading data.
128
128
<template >
129
129
<el-button
130
130
type =" primary"
131
- @click =" openFullScreen "
131
+ @click =" openFullScreen1 "
132
132
v-loading.fullscreen.lock =" fullscreenLoading" >
133
133
As a directive
134
134
</el-button >
135
135
<el-button
136
136
type =" primary"
137
- @click =" openFullScreen " >
137
+ @click =" openFullScreen2 " >
138
138
As a service
139
139
</el-button >
140
140
</template >
@@ -147,13 +147,13 @@ Show a full screen animation while loading data.
147
147
}
148
148
},
149
149
methods: {
150
- openFullScreen () {
150
+ openFullScreen1 () {
151
151
this .fullscreenLoading = true ;
152
152
setTimeout (() => {
153
153
this .fullscreenLoading = false ;
154
154
}, 2000 );
155
155
},
156
- openFullScreen () {
156
+ openFullScreen2 () {
157
157
const loading = this .$loading ({
158
158
lock: true ,
159
159
text: ' Loading' ,
Original file line number Diff line number Diff line change @@ -128,13 +128,13 @@ Muestra una animación de pantalla completa mientras se cargan los datos
128
128
<template >
129
129
<el-button
130
130
type =" primary"
131
- @click =" openFullScreen "
131
+ @click =" openFullScreen1 "
132
132
v-loading.fullscreen.lock =" fullscreenLoading" >
133
133
Como directiva
134
134
</el-button >
135
135
<el-button
136
136
type =" primary"
137
- @click =" openFullScreen " >
137
+ @click =" openFullScreen2 " >
138
138
Como servicio
139
139
</el-button >
140
140
</template >
@@ -147,13 +147,13 @@ Muestra una animación de pantalla completa mientras se cargan los datos
147
147
}
148
148
},
149
149
methods: {
150
- openFullScreen () {
150
+ openFullScreen1 () {
151
151
this .fullscreenLoading = true ;
152
152
setTimeout (() => {
153
153
this .fullscreenLoading = false ;
154
154
}, 2000 );
155
155
},
156
- openFullScreen () {
156
+ openFullScreen2 () {
157
157
const loading = this .$loading ({
158
158
lock: true ,
159
159
text: ' Loading' ,
Original file line number Diff line number Diff line change @@ -128,13 +128,13 @@ Affichez une animation en plein écran quand vous charger des données.
128
128
<template >
129
129
<el-button
130
130
type =" primary"
131
- @click =" openFullScreen "
131
+ @click =" openFullScreen1 "
132
132
v-loading.fullscreen.lock =" fullscreenLoading" >
133
133
Comme directive
134
134
</el-button >
135
135
<el-button
136
136
type =" primary"
137
- @click =" openFullScreen " >
137
+ @click =" openFullScreen2 " >
138
138
Comme service
139
139
</el-button >
140
140
</template >
@@ -147,13 +147,13 @@ Affichez une animation en plein écran quand vous charger des données.
147
147
}
148
148
},
149
149
methods: {
150
- openFullScreen () {
150
+ openFullScreen1 () {
151
151
this .fullscreenLoading = true ;
152
152
setTimeout (() => {
153
153
this .fullscreenLoading = false ;
154
154
}, 2000 );
155
155
},
156
- openFullScreen () {
156
+ openFullScreen2 () {
157
157
const loading = this .$loading ({
158
158
lock: true ,
159
159
text: ' Loading' ,
Original file line number Diff line number Diff line change 127
127
<template >
128
128
<el-button
129
129
type =" primary"
130
- @click =" openFullScreen "
130
+ @click =" openFullScreen1 "
131
131
v-loading.fullscreen.lock =" fullscreenLoading" >
132
132
指令方式
133
133
</el-button >
134
134
<el-button
135
135
type =" primary"
136
- @click =" openFullScreen " >
136
+ @click =" openFullScreen2 " >
137
137
服务方式
138
138
</el-button >
139
139
</template >
146
146
}
147
147
},
148
148
methods: {
149
- openFullScreen () {
149
+ openFullScreen1 () {
150
150
this .fullscreenLoading = true ;
151
151
setTimeout (() => {
152
152
this .fullscreenLoading = false ;
153
153
}, 2000 );
154
154
},
155
- openFullScreen () {
155
+ openFullScreen2 () {
156
156
const loading = this .$loading ({
157
157
lock: true ,
158
158
text: ' Loading' ,
You can’t perform that action at this time.
0 commit comments