Skip to content

Commit

Permalink
chore: prepare for stable
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Dec 7, 2020
1 parent 54f6096 commit ea612bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
10 changes: 3 additions & 7 deletions README.md
@@ -1,18 +1,14 @@
# vue-router-next [![release candidate](https://img.shields.io/npm/v/vue-router/next.svg)](https://www.npmjs.com/package/vue-router/v/next) [![CircleCI](https://circleci.com/gh/vuejs/vue-router-next.svg?style=svg)](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
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/index.md
Expand Up @@ -5,8 +5,8 @@ Creating a Single-page Application with Vue + Vue Router feels natural: with Vue
## 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>
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Expand Up @@ -2,7 +2,7 @@

## 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-->

Expand All @@ -13,7 +13,7 @@
## npm

```bash
npm install vue-router@next
npm install vue-router@4
```

## Dev Build
Expand Down

0 comments on commit ea612bc

Please sign in to comment.