LayoutView constructor
LayoutView()
Implementation
LayoutView() {
final HTMLElement slot = document.createElement('div') as HTMLElement;
router = Router(slot);
defineRoutes();
router.start();
content = router.mountPoint;
}