Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
SunWuyuan committed Nov 24, 2024
1 parent c5e2763 commit 3050f6d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/account/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default {
if (localuser.islogin.value == true) {
this.$router.push("/");
}
initRecaptcha("recaptcha-div", "float");
initRecaptcha("recaptcha-div", "popup");
},
setup() {
useHead({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/account/magiclink/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default {
});
},
setup() {
initRecaptcha("recaptcha-div", "float");
initRecaptcha("recaptcha-div", "popup");
},
methods: {
async login() {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/account/register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default {
if (localuser.islogin.value == true) {
this.$router.push("/");
}
initRecaptcha("recaptcha-div", "float");
initRecaptcha("recaptcha-div", "popup");
},
setup() {
useHead({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/account/retrieve.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export default {
if (localuser.islogin.value == true) {
this.$router.push("/");
}
initRecaptcha("recaptcha-div", "float");
initRecaptcha("recaptcha-div", "popup");
},
setup() {
useHead({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/account/retrievecallback.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default {
if (localuser.islogin.value == true) {
this.$router.push("/");
}
initRecaptcha("recaptcha-div", "float");
initRecaptcha("recaptcha-div", "popup");
},
setup() {
useHead({
Expand Down

0 comments on commit 3050f6d

Please sign in to comment.