123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- module.exports = {
- locales: {
- '/': {
- lang: 'en-US',
- title: 'Vuex',
- description: 'Centralized State Management for Vue.js'
- },
- '/zh/': {
- lang: 'zh-CN',
- title: 'Vuex',
- description: 'Vue.js 的中心化状态管理方案'
- },
- '/ja/': {
- lang: 'ja',
- title: 'Vuex',
- description: 'Vue.js のための集中状態管理'
- }
- },
- serviceWorker: true,
- theme: 'vue',
- themeConfig: {
- repo: 'vuejs/vuex',
- docsDir: 'docs',
- locales: {
- '/': {
- label: 'English',
- selectText: 'Languages',
- editLinkText: 'Edit this page on GitHub',
- nav: [
- {
- text: 'Guide',
- link: '/getting-started'
- },
- {
- text: 'API Reference',
- link: '/api'
- },
- {
- text: 'Release Notes',
- link: 'https://github.com/vuejs/vuex/releases'
- }
- ],
- sidebar: [
- '/installation',
- '/',
- '/getting-started',
- {
- title: 'Core Concepts',
- collapsable: false,
- children: [
- '/state',
- '/getters',
- '/mutations',
- '/actions',
- '/modules'
- ]
- },
- '/structure',
- '/plugins',
- '/strict',
- '/forms',
- '/testing',
- '/hot-reload'
- ]
- },
- '/zh/': {
- label: '简体中文',
- selectText: '选择语言',
- editLinkText: '在 GitHub 上编辑此页',
- nav: [
- {
- text: '指南',
- link: '/zh/getting-started'
- },
- {
- text: 'API 参考',
- link: '/zh/api'
- },
- {
- text: '更新记录',
- link: 'https://github.com/vuejs/vuex/releases'
- }
- ],
- sidebar: [
- '/zh/installation',
- '/zh/',
- '/zh/getting-started',
- {
- title: '核心概念',
- collapsable: false,
- children: [
- '/zh/state',
- '/zh/getters',
- '/zh/mutations',
- '/zh/actions',
- '/zh/modules'
- ]
- },
- '/zh/structure',
- '/zh/plugins',
- '/zh/strict',
- '/zh/forms',
- '/zh/testing',
- '/zh/hot-reload'
- ]
- },
- '/ja/': {
- label: '日本語',
- selectText: '言語',
- editLinkText: 'GitHub 上でこのページを編集する',
- nav: [{
- text: 'ガイド',
- link: '/ja/getting-started'
- },
- {
- text: 'API リファレンス',
- link: '/ja/api'
- },
- {
- text: 'リリースノート',
- link: 'https://github.com/vuejs/vuex/releases'
- }
- ],
- sidebar: [
- '/ja/installation',
- '/ja/',
- '/ja/getting-started',
- {
- title: 'コアコンセプト',
- collapsable: false,
- children: [
- '/ja/state',
- '/ja/getters',
- '/ja/mutations',
- '/ja/actions',
- '/ja/modules'
- ]
- },
- '/ja/structure',
- '/ja/plugins',
- '/ja/strict',
- '/ja/forms',
- '/ja/testing',
- '/ja/hot-reload'
- ]
- }
- }
- }
- }
|