Skip to content

Commit 94d433a

Browse files
ryo-gkkiaking
andauthored
docs(ja): add Japanese docs for vuex 4.0 (#1980)
Co-authored-by: Kia King Ishii <[email protected]>
1 parent fe02e85 commit 94d433a

19 files changed

+2445
-0
lines changed

docs/.vitepress/config.js

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ module.exports = {
1414
title: 'Vuex',
1515
description: 'Vue.js 的中心化状态管理方案'
1616
},
17+
'/ja/': {
18+
lang: 'ja',
19+
title: 'Vuex',
20+
description: 'Vue.js のための集中状態管理'
21+
},
1722
'/ptbr/': {
1823
lang: 'pt-BR',
1924
title: 'Vuex',
@@ -154,6 +159,65 @@ module.exports = {
154159
]
155160
},
156161

162+
'/ja/': {
163+
label: '日本語',
164+
selectText: '言語',
165+
editLinkText: 'GitHub 上でこのページを編集する',
166+
lastUpdated: '最終更新日時',
167+
168+
nav: [
169+
{ text: 'ガイド', link: '/ja/guide/' },
170+
{ text: 'API リファレンス', link: '/ja/api/' },
171+
{ text: 'リリースノート', link: 'https://github.com/vuejs/vuex/releases' },
172+
{
173+
text: 'v4.x',
174+
items: [
175+
{ text: 'v3.x', link: 'https://vuex.vuejs.org/ja' }
176+
]
177+
}
178+
],
179+
180+
sidebar: [
181+
{
182+
text: 'はじめに',
183+
children: [
184+
{ text: 'Vuex とは何か?', link: '/ja/' },
185+
{ text: 'インストール', link: '/ja/installation' },
186+
{ text: 'Vuex 入門', link: '/ja/guide/' }
187+
]
188+
},
189+
{
190+
text: 'コアコンセプト',
191+
children: [
192+
{ text: 'ステート', link: '/ja/guide/state' },
193+
{ text: 'ゲッター', link: '/ja/guide/getters' },
194+
{ text: 'ミューテーション', link: '/ja/guide/mutations' },
195+
{ text: 'アクション', link: '/ja/guide/actions' },
196+
{ text: 'モジュール', link: '/ja/guide/modules' }
197+
]
198+
},
199+
{
200+
text: '高度な活用',
201+
children: [
202+
{ text: 'アプリケーションの構造', link: '/ja/guide/structure' },
203+
{ text: 'Composition API', link: '/ja/guide/composition-api' },
204+
{ text: 'プラグイン', link: '/ja/guide/plugins' },
205+
{ text: '厳格モード', link: '/ja/guide/strict' },
206+
{ text: 'フォームの扱い', link: '/ja/guide/forms' },
207+
{ text: 'テスト', link: '/ja/guide/testing' },
208+
{ text: 'ホットリローディング', link: '/ja/guide/hot-reload' },
209+
{ text: 'TypeScript サポート', link: '/ja/guide/typescript-support' },
210+
]
211+
},
212+
{
213+
text: '移行 ガイド',
214+
children: [
215+
{ text: '3.x から 4.0 への移行', link: '/ja/guide/migrating-to-4-0-from-3-x' }
216+
]
217+
}
218+
]
219+
},
220+
157221
'/ptbr/': {
158222
label: 'Português',
159223
selectText: 'Idiomas',

0 commit comments

Comments
 (0)