mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
14 lines
408 B
JavaScript
14 lines
408 B
JavaScript
export default class ProductService {
|
|
|
|
getProductsSmall() {
|
|
return fetch('/demo/data/products-small.json').then(res => res.json()).then(d => d.data);
|
|
}
|
|
|
|
getProducts() {
|
|
return fetch('/demo/data/products-small.json').then(res => res.json()).then(d => d.data);
|
|
}
|
|
|
|
getProductsWithOrdersSmall() {
|
|
return fetch('/demo/data/products-small.json').then(res => res.json()).then(d => d.data);
|
|
}
|
|
}
|