Skip to content

Commit

Permalink
🐞 fix: fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
xytoki committed Nov 16, 2023
1 parent 2d82427 commit 12e0fef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/store/providers/cocogoat/Install.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ export default defineComponent({
emits: ['submit'],
setup(props, { emit }) {
let gtObj: any

Check warning on line 69 in src/store/providers/cocogoat/Install.vue

View workflow job for this annotation

GitHub Actions / Build

Unexpected any. Specify a different type

Check warning on line 69 in src/store/providers/cocogoat/Install.vue

View workflow job for this annotation

GitHub Actions / Build

Unexpected any. Specify a different type
let gtOnSucc = () => {}
let gtOnSucc = () => {
// placeholder
}
const step = ref(1)
onMounted(() => {
window.initGeetest4(
Expand All @@ -82,7 +84,9 @@ export default defineComponent({
})
.onSuccess(function () {
gtOnSucc()
gtOnSucc = () => {}
gtOnSucc = () => {
// placeholder
}
})
.onClose(function () {
step.value = 1
Expand Down

0 comments on commit 12e0fef

Please sign in to comment.