Skip to content

KimeshType-Safe File-Based Routing for Vue

Build scalable Vue applications with file-based routing, layers, and auto-imports powered by Vue Router and TanStack Query

Quick Example ​

src/routes/
β”œβ”€β”€ __root.vue          # Root layout
β”œβ”€β”€ index.vue           # / (home page)
β”œβ”€β”€ about.vue           # /about
β”œβ”€β”€ posts/
β”‚   β”œβ”€β”€ index.vue       # /posts
β”‚   └── $id.vue         # /posts/:id (dynamic)
└── $.vue               # Catch-all route

Each file automatically becomes a route. No manual route configuration needed.

Released under the MIT License.