From c9f896d700cde853ab2b9f4153cc0755816b5857 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:11:29 +0900 Subject: [PATCH] docs: changed lifecycle hooks to be after components basics in sidebar --- .vitepress/config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 3bb02a627..34a3b76e0 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -181,15 +181,15 @@ export const sidebar: ThemeConfig['sidebar'] = { link: '/guide/essentials/event-handling' }, { text: 'フォーム入力バインディング', link: '/guide/essentials/forms' }, - { - text: 'ライフサイクルフック', - link: '/guide/essentials/lifecycle' - }, { text: 'ウォッチャー', link: '/guide/essentials/watchers' }, { text: 'テンプレート参照', link: '/guide/essentials/template-refs' }, { text: 'コンポーネントの基礎', link: '/guide/essentials/component-basics' + }, + { + text: 'ライフサイクルフック', + link: '/guide/essentials/lifecycle' } ] },