Package Exports
- vue-ultimate-query
- vue-ultimate-query/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-ultimate-query) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-ultimate-query
A Vue 3 API utility using Vue Query, VueUse, and Axios. Simplify API interactions in your Vue 3 applications with predefined API functions and hooks.
Installation
Install the package via npm:
npm install vue-ultimate-query
Usage
Basic Example
import { apiQuery } from "vue-ultimate-query";
const { data, error, isLoading, refetch } = apiQuery("products").useGet();
Available Methods
The package provides hooks for common API actions (GET, POST, PUT, DELETE):
- GET: Fetch data from the server.
- POST: Create a new resource.
- PUT: Update an existing resource.
- DELETE: Remove a resource.
Custom Hook Example
const { data, error, isLoading } = apiQuery("products").useGet({ page: 1, limit: 10 });
Mutation Hooks
For creating, updating, or deleting resources, the package provides the following hooks:
- useStore – For POST requests (creating new resources).
- useUpdate – For PUT requests (updating resources).
- useDelete – For DELETE requests (removing resources).
const { mutate, isLoading } = apiQuery("products").useStore();
mutate({ name: 'New Product', price: 100 });
Error Handling
The package uses vue-toastification for displaying success and error messages. You can customize how errors are displayed through the handleError function.
Global Configuration
You can modify the global configuration and set default values as needed.
import axios from "axios";
import { setAxiosInstance } from "vue-ultimate-query";
import { useStorage, useSessionStorage } from "@vueuse/core";
import { BASE_URL } from "@/shared/constants.js";
const userStorage = useStorage("user", {});
const userSessionStorage = useSessionStorage("user", {});
// Create a new Axios instance
const customAxios = axios.create({
baseURL: BASE_URL,
headers: { "Content-Type": "application/json" },
});
// Add authorization token dynamically
customAxios.interceptors.request.use((config) => {
config.headers.Authorization = `Bearer ${
userSessionStorage.value.token || userStorage.value.token || ""
}`;
return config;
});
// Pass custom Axios to the package
setAxiosInstance(customAxios);
License
This project is licensed under the MIT License - see the LICENSE file for details.