2025-01-23 11:43:45 +00:00
|
|
|
import { setupHttp } from '@/api/http'
|
2025-03-02 09:31:04 +00:00
|
|
|
import { setupHttp as setupHttp1} from '@/api-collect-code/http'
|
2025-05-19 07:12:51 +00:00
|
|
|
import { setupHttp as abroadSetupHttp } from '~/api-collect-code/http-abroad'
|
2025-01-16 07:40:06 +00:00
|
|
|
export default defineNuxtPlugin(() => {
|
|
|
|
setupHttp()
|
2025-03-02 09:31:04 +00:00
|
|
|
setupHttp1()
|
2025-05-19 07:12:51 +00:00
|
|
|
abroadSetupHttp()
|
2025-01-16 07:40:06 +00:00
|
|
|
})
|