mirror of
https://github.com/OpenBankProject/API-Explorer-II.git
synced 2026-02-06 10:47:04 +00:00
first endpoint
This commit is contained in:
parent
d329a02fe8
commit
5db4848b29
@ -26,6 +26,7 @@
|
||||
-->
|
||||
|
||||
<script lang="ts">
|
||||
import { nextTick } from 'vue'
|
||||
import { obpResourceDocsKey } from '@/obp/keys'
|
||||
import { Search } from '@element-plus/icons-vue'
|
||||
import { inject, onBeforeMount, onMounted, reactive, ref, watch } from 'vue'
|
||||
@ -105,7 +106,8 @@ onBeforeMount(async () => {
|
||||
}
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
onMounted(async () => {
|
||||
await nextTick()
|
||||
routeToFirstAPI()
|
||||
})
|
||||
|
||||
@ -118,6 +120,7 @@ watch(
|
||||
activeKeys.value = Object.keys(groups.value)
|
||||
sortedKeys.value = activeKeys.value.sort()
|
||||
await initializeAPICollections()
|
||||
await nextTick()
|
||||
routeToFirstAPI()
|
||||
countApis()
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user