Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Last active March 5, 2021 15:45
Show Gist options
  • Save nolimits4web/3f64420ae8bd0ba4d7f55dbff6b0faa2 to your computer and use it in GitHub Desktop.
Save nolimits4web/3f64420ae8bd0ba4d7f55dbff6b0faa2 to your computer and use it in GitHub Desktop.
f7-next-routes
const routes = [
{
path: "/",
asyncComponent: () => import("./index"),
},
{
path: "/about",
asyncComponent: () => import("./about"),
},
{
path: '/blog/:postID',
asyncComponent: () => import('./blog/[postID]'),
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment