From 97de59d2fcf0bc27c5e18f92cf7b93e48b057941 Mon Sep 17 00:00:00 2001 From: atilkan Date: Wed, 29 Jan 2020 11:01:11 +0300 Subject: [PATCH] fix typo (#2) --- active-rfcs/0000-router-dynamic-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/active-rfcs/0000-router-dynamic-routing.md b/active-rfcs/0000-router-dynamic-routing.md index a003f17e..361cec7a 100644 --- a/active-rfcs/0000-router-dynamic-routing.md +++ b/active-rfcs/0000-router-dynamic-routing.md @@ -37,7 +37,7 @@ const routeRecords = router.getRoutes() # Motivation -Dynamic routing is a feature that enables applications to build its own routing system. An usecase of this is the vue-cli ui, that allows adding graphical plugins which can have their own interfaces. +Dynamic routing is a feature that enables applications to build its own routing system. A usecase of this is the vue-cli ui, that allows adding graphical plugins which can have their own interfaces. The current version of Vue Router only supports adding a new absolute route. The idea of this RFC is to add the missing functions to allow dynamic routing. Thinking about the different ways this API can be shaped and what is best for the future of Vue Router. Currently, it's impossible to achieve the example described above without hacks or creating a whole new Router instance.