mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-21 06:54:08 -07:00
Make json getter
This commit is contained in:
parent
de6c4da80f
commit
6e51ff67d8
1 changed files with 3 additions and 1 deletions
|
|
@ -27,7 +27,9 @@ export class PaginatedList {
|
||||||
return {
|
return {
|
||||||
number: pageNumber,
|
number: pageNumber,
|
||||||
items,
|
items,
|
||||||
json: JSON.stringify( items )
|
get json() {
|
||||||
|
return JSON.stringify( items )
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue