]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: add more breaking changes notes
authorEduardo San Martin Morote <posva13@gmail.com>
Tue, 4 Aug 2020 14:52:22 +0000 (16:52 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Tue, 4 Aug 2020 14:52:22 +0000 (16:52 +0200)
README.md

index 4955e8dbe2138ef46b6c80f9a7b9edbc6eb3d32a..92a4cff5000a320f55ec33aebb7ac42164b17462 100644 (file)
--- a/README.md
+++ b/README.md
     Object.values(record.components)
   )
   ```
+  - The `append` argument has been removed. You can manually concatenate the value to an existing `path` instead.
+- `RouterLink`
+  - `append` prop has been removed as well. Use the same workaround as above.
+  - `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).
+  - `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).
+  - `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).
 - If you use a `transition`, you may need to wait for the router to be _ready_ before mounting the app:
   ```js
   app.use(router)