[+] Add info to index

This commit is contained in:
Hykilpikonna
2019-12-21 13:20:32 -05:00
parent cdeae1e1d4
commit adb211c58a
+6
View File
@@ -5,6 +5,7 @@ export interface Index
hash: string
title?: string
identifier?: string
info?: any
}
export default class NavController
@@ -78,4 +79,9 @@ export default class NavController
{
return this.index.identifier
}
get info()
{
return this.index.info
}
}