UNPKG

@joker.front/cli

Version:

The Next-Generation Front-End Toolchain: Swift, Efficient, and Adaptive.

18 lines (15 loc) 361 B
import App from "./App.joker"; import { Router } from "@joker.front/router"; let router = new Router({ routes: [ { path: "/", redirect: "/index" }, { path: "/index", component: () => import("./pages/index.joker") } ] }); new App().$mount(document.getElementById("app"));