Skip to content

Commit

Permalink
feat: PicGO 插件第一版-图床配置
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Jun 13, 2023
1 parent 69d02f9 commit c613f7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/setting/PicgoPluginSetting.vue
Expand Up @@ -26,7 +26,7 @@
<script lang="ts" setup>
import { ElMessage, ElMessageBox } from "element-plus"
import { computed, onBeforeMount, onBeforeUnmount, reactive, ref, watch } from "vue"
import { debounce, DebouncedFunc } from "lodash"
import { debounce } from "lodash"
import ConfigForm from "~/src/components/common/ConfigForm.vue"
import { useVueI18n } from "~/src/composables/useVueI18n.ts"
import { createAppLogger } from "~/src/utils/appLogger.ts"
Expand Down Expand Up @@ -54,7 +54,7 @@ const npmSearchText = computed(() => {
? `picgo-plugin-${searchText.value}`
: searchText.value
})
let getSearchResult: DebouncedFunc<(val: string) => void>
let getSearchResult: any
const showPluginConfigForm = ref(false)
const pluginConfigData = reactive({
currentType: "plugin",
Expand Down

0 comments on commit c613f7c

Please sign in to comment.