This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ref } from 'vue'; | |
import HTTPService from '../services/http/HTTPService'; | |
// також просто як приклад, що звідси можна глобально викликати стан завантаження сторінки з Квазару. | |
import { Loading } from 'quasar'; | |
export function useAPI(url, ...args) { | |
let config = {}; | |
let start = true; |