Skip to content

Commit 9e38637

Browse files
committed
docs: add more breaking changes notes
1 parent 1f1189f commit 9e38637

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
Object.values(record.components)
3333
)
3434
```
35+
- The `append` argument has been removed. You can manually concatenate the value to an existing `path` instead.
36+
- `RouterLink`
37+
- `append` prop has been removed as well. Use the same workaround as above.
38+
- `event` prop has been removed. Use the `v-slot` API instead. See [RFC](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0021-router-link-scoped-slot.md).
39+
- `tag` prop has been removed. Use the `v-slot` API instead. See [RFC](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0021-router-link-scoped-slot.md).
40+
- `exact` prop has been removed. The caveat it was fixing is no longer present. See [RFC](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0028-router-active-link.md).
3541
- If you use a `transition`, you may need to wait for the router to be _ready_ before mounting the app:
3642
```js
3743
app.use(router)

0 commit comments

Comments
 (0)