mahal-router
v1.1.4
Published
The official router for mahal framework.
Downloads
2
Maintainers
Readme
mahal-router
Official router plugin for Mahal framework
Install
npm i mahal-router
Setup
import { Timer, Mahal } from "mahal";
import Root from "./components/root.mahal";
import { RouterPlugin, Router } from "mahal-router";
import { routes } from "./routes";
const router = new Router(routes, {
mode: "history"
});
const app = new Mahal(Root, '#app');
// add router as plugin
app.extend.plugin(RouterPlugin, router);
app.create();
Docs
https://mahaljs.com/docs/router/