2022-12-09 13:41:56 +00:00
|
|
|
const baseUrl = process.env.NODE_ENV === 'production' ? '/primevue-nuxt/' : '/';
|
|
|
|
|
2020-06-30 11:43:29 +00:00
|
|
|
export default class ProductService {
|
|
|
|
getProductsSmall() {
|
2022-12-09 13:41:56 +00:00
|
|
|
return fetch(baseUrl + 'demo/data/products-small.json')
|
2022-09-14 14:26:41 +00:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((d) => d.data);
|
|
|
|
}
|
2020-06-30 11:43:29 +00:00
|
|
|
|
2022-09-14 14:26:41 +00:00
|
|
|
getProducts() {
|
2022-12-09 13:41:56 +00:00
|
|
|
return fetch(baseUrl + 'demo/data/products-small.json')
|
2022-09-14 14:26:41 +00:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((d) => d.data);
|
2020-07-01 08:55:56 +00:00
|
|
|
}
|
2020-07-01 10:51:46 +00:00
|
|
|
|
2020-07-01 08:55:56 +00:00
|
|
|
getProductsWithOrdersSmall() {
|
2022-12-09 13:41:56 +00:00
|
|
|
return fetch(baseUrl + 'demo/data/products-small.json')
|
2022-09-14 14:26:41 +00:00
|
|
|
.then((res) => res.json())
|
|
|
|
.then((d) => d.data);
|
|
|
|
}
|
2020-06-30 11:43:29 +00:00
|
|
|
}
|