Automatically generate routing configuration based on file path. Based on Vite, Vue, Vue Router
Install v-route-generate
# Choose a package manager you like.
# NPM
npm install v-route-generate --save
# Yarn
yarn add v-route-generate
# pnpm
pnpm install v-route-generate
// file: src/router/index.ts
import { createRouter, createWebHistory } from "vue-router";
import { getRoutes } from "v-route-generate";
/**
* @link vite glob-import https://vitejs.dev/guide/features.html#glob-import
* The `views` path is in `src/`.
*/
const routes = getRoutes(import.meta.glob("../views/**/**.vue"), {
pathRoot: "../views/",
});
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes,
});
router.beforeResolve(async (to) => {
console.log(to);
});
console.log(routes);
export default router;
Tree of the src/views/
dir:
.
│ AboutView.vue
│ HomeView.vue
│
└─Hello
│ HiView.vue
│
└─ChildA
HomeView.vue
This example does not confirm the results, it is convenient to use JSX/TSX for display.
[
{
path: "/AboutView",
component: () => import("../views/AboutView.vue"),
},
{
path: "/",
component: () => import("../views/HomeView.vue"),
},
{
path: "/Hello",
component: <RouterView />,
children: [
{
path: "HiView",
component: () => import("../views/Hello/HiView.vue"),
},
{
path: "ChildA",
component: <RouterView />,
children: [
{
path: "",
component: () => import("../views/Hello/ChildA/HomeView.vue"),
},
],
},
],
},
];
-
PascalStyle (Recommended)
-
Homepage filename is
HomeView.vue
orIndex.uve
,index.vue
(Must) -
NotFound page is:
404.vue
ornotfound.vue
,NotFound.vue
(Must)
- One parameter
src/views/User/[userId].vue
(File)
→ /User/:userId
(Vue route configure parameter of path
)
→ /User/123
(Browser access path)
Route Params in Vue SFC
$route.params.pid = "123";
- multi parameter
src/views/User/list-[pid]-[userName].vue
(File)
→ /User/list-:pid-:userName
(Vue route configure parameter of path
)
→ /User/list-456-Foo
(Browser access path)
Route Params in Vue SFC
$route.params.pid = "123";
$route.params.userName = "Foo";
Welcome to contribute code.
# install
pnpm install
# or
npm i
# build
pnpm run build
# or
npm run build
MIT
Copyright (c) 2022-present, Quanju Wei