From 2703bed715090a4cb864bdf6b660b5e3c5eb9f9b Mon Sep 17 00:00:00 2001 From: harrywan Date: Mon, 5 Jul 2021 11:39:56 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/guide/runtime-config.md | 40 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/guide/runtime-config.md b/docs/guide/runtime-config.md index 65fecf31..b8070aa1 100644 --- a/docs/guide/runtime-config.md +++ b/docs/guide/runtime-config.md @@ -39,26 +39,6 @@ export function beforeRender(lastOpts) { }; ``` -### patchRoutes - -patchRoutes({routes }) - - -修改路由。 - -比如在最前面添加一个 /foo 路由: -``` -export function patchRoutes({ routes }) { - routes.unshift({ - path: '/foo', - component: require('@/extraRoutes/foo').default, - }); -} -``` -:::tip -直接修改 `routes`, 不需要返回 -::: - ### modifyClientRenderOpts modifyClientRenderOpts(lastOpts) @@ -103,6 +83,26 @@ export function rootContainer(container) { } ``` +### patchRoutes + +patchRoutes({routes }) + + +修改路由。 + +比如在最前面添加一个 /foo 路由: +``` +export function patchRoutes({ routes }) { + routes.unshift({ + path: '/foo', + component: require('@/extraRoutes/foo').default, + }); +} +``` +:::tip +直接修改 `routes`, 不需要返回 +::: + ### onAppCreated onAppCreated({app})