10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
import { useQuery } from '@tanstack/vue-query'
|
|
import { getProductList } from '~/api/endpoints'
|
|
|
|
export const useGetProductList = () => {
|
|
return useQuery({
|
|
queryKey: ['get-product-list'],
|
|
queryFn: () => getProductList(),
|
|
})
|
|
}
|