mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Some paths fixed
This commit is contained in:
parent
4add722619
commit
699a2d7398
8 changed files with 20 additions and 10 deletions
|
@ -1,12 +1,12 @@
|
|||
export default class NodeService {
|
||||
|
||||
getTreeTableNodes() {
|
||||
return fetch('demo/data/treetablenodes.json').then(res => res.json())
|
||||
return fetch('/demo/data/treetablenodes.json').then(res => res.json())
|
||||
.then(d => d.root);
|
||||
}
|
||||
|
||||
getTreeNodes() {
|
||||
return fetch('demo/data/treenodes.json').then(res => res.json())
|
||||
return fetch('/demo/data/treenodes.json').then(res => res.json())
|
||||
.then(d => d.root);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue