primevue-mirror/service/PricingService.js

6 lines
191 B
JavaScript
Raw Normal View History

2022-12-08 12:26:57 +00:00
export default class PricingService {
fetchPricing() {
return fetch('https://www.primefaces.org/cdn/pricing/uikit.json', { cache: 'no-store' }).then((res) => res.json());
}
}