接口命名统一

This commit is contained in:
周建
2023-06-21 13:22:47 +08:00
parent c545c3008f
commit b07cc98619
7 changed files with 25 additions and 21 deletions

View File

@ -12,7 +12,7 @@ const src = ref('http://skywalking.shop.iocoder.cn')
/** 初始化 */
onMounted(async () => {
try {
const data = await ConfigApi.getConfigKey('url.skywalking')
const data = await ConfigApi.getConfigKeyApi('url.skywalking')
if (data && data.length > 0) {
src.value = data
}