21 lines
348 B
JavaScript
21 lines
348 B
JavaScript
|
|
import BasePage from "../base.js";
|
|
|
|
export default class PageDogHome extends BasePage {
|
|
static hash = hashPageDogHome;
|
|
|
|
constructor(router) {
|
|
super(router);
|
|
}
|
|
|
|
initialize() {
|
|
this.sharedInitialize();
|
|
this.hookupFiltersDog();
|
|
this.hookupDogHome();
|
|
}
|
|
|
|
leave() {
|
|
super.leave();
|
|
}
|
|
}
|