# vue-router-next [](https://www.npmjs.com/package/vue-router/v/next) [](https://circleci.com/gh/vuejs/vue-router-next)
-## Status: Release Candidate
-
-- Most RFCs have been merged.
-- All [merged RFCs](https://github.com/vuejs/rfcs/pulls?q=is%3Apr+is%3Amerged+label%3A3.x+label%3Arouter) have been implemented.
-- [Documentation](https://next.router.vuejs.org).
+This is the repository for Vue Router 4 (for Vue 3)
## Quickstart
-- Via CDN: `<script src="https://unpkg.com/vue-router@next"></script>`
+- Via CDN: `<script src="https://unpkg.com/vue-router@4"></script>`
- In-browser playground on [CodeSandbox](https://codesandbox.io/s/vue-router-4-reproduction-hb9lh)
- Add it to an existing Vue Project:
```bash
- npm install vue-router@next
+ npm install vue-router@4
```
## Changes from Vue Router 3
## HTML
```html
-<script src="https://unpkg.com/vue@next"></script>
-<script src="https://unpkg.com/vue-router@next"></script>
+<script src="https://unpkg.com/vue@4"></script>
+<script src="https://unpkg.com/vue-router@4"></script>
<div id="app">
<h1>Hello App!</h1>
## Direct Download / CDN
-[https://unpkg.com/vue-router@next](https://unpkg.com/vue-router@next)
+[https://unpkg.com/vue-router@4](https://unpkg.com/vue-router@4)
<!--email_off-->
## npm
```bash
-npm install vue-router@next
+npm install vue-router@4
```
## Dev Build