1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import * as externalSystemServices from '@/services/api/ExternalSystem';
| import { useQuery } from '@tanstack/vue-query';
|
| export function useGetCurrentExternalSystem() {
| const { data } = useQuery({
| queryKey: ['externalSystemServices/getCurrentExternalSystem'],
| queryFn: async () => {
| return await externalSystemServices.getCurrentExternalSystem({ showLoading: false });
| },
| initialData: () => ({} as API.GetCurrentExternalSystemOutput),
| });
|
| const isSignWallet = computed(() => data.value?.isSignWallet);
|
| return {
| isSignWallet,
| };
| }
|
|