vue-nano-router
v1.0.4
Published
Tiny router for Vue 3 with Composition API support.
Downloads
488
Readme
Minimal router for Vue 3.
Usage
<template>
<Link to="/">Home</Link>
<Route path="/">
<HomePage />
</Route>
<Route path="/about">
<AboutPage />
</Route>
<Route :match="location.pathname === '/contact'">
<ContactPage />
</Route>
</template>useRouter().navigateTo('/about')Current Limitations
- When using
matchmultiple routes can match at the same time. - Currently only supports browser history (no hash or memory history).
