2023-11-21 13:15:16 -05:00
|
|
|
export default class {
|
2023-11-30 07:05:46 -05:00
|
|
|
constructor(params, title) {
|
2023-11-21 13:15:16 -05:00
|
|
|
this.params = params;
|
2023-11-30 07:05:46 -05:00
|
|
|
this.title = title;
|
2023-11-21 13:15:16 -05:00
|
|
|
}
|
|
|
|
|
2023-11-27 08:31:47 -05:00
|
|
|
async postInit() {
|
|
|
|
}
|
|
|
|
|
2023-11-27 15:59:41 -05:00
|
|
|
async leavePage() {
|
|
|
|
}
|
|
|
|
|
2023-11-30 07:05:46 -05:00
|
|
|
setTitle() {
|
|
|
|
document.title = this.title;
|
2023-11-21 13:15:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async getHtml() {
|
|
|
|
return "";
|
|
|
|
}
|
2023-11-27 08:31:47 -05:00
|
|
|
}
|