{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["api","introduct","typescript","vue@2.5+","vuex","が必須、逆もまた同様です。","と","とは何か?","アクション","アプリケーションの構造","インストール","ゲッター","コアコンセプト","ステート","テスト","フォームの扱い","プラグイン","ホットリローディング","ミューテーション","モジュール","ユーザ向けは、vuex@3.0+","リファレンス","リリースノート","入門","厳格モード","注意:"],"installation.html":["'vue'","'vuex'","/","add","build","cd","cdn","clone","git","github","https://github.com/vuejs/vuex.git","https://unpkg.com/vuex","import","instal","node_modules/vuex","npm","run","save","unpkg.com","url","vue","vue.use()","vue.use(vuex)","vuex","yarn","から直接クローンし","が導入されます:","で","によって","によって特定のバージョン/タグを利用することもできます。","のあとで","のような","の最新のリリースを指します。https://unpkg.com/vuex@2.0.0","を取り込むと自動的に","を明示的に導入する必要があります:","を自身でビルドする必要があります。","インストール","グローバルなスクリプトタグを利用する場合にはこのようにする必要はありません。","ベースの","モジュールシステムで利用される場合、","リンクが提供されています。上記リンクは常に","最新の開発版ビルドを利用したい場合には、","直接ダウンロードする","開発版ビルド"],"intro.html":["\"ビュー\"","\"状態管理パターン\"とはなんですか？","()","(props)","+","//","0","`","`,","abramov","action","architectureから影響を受けています。","count","count:","data","elm","flux","increment","methods:","new","redux","return","sourc","spa","state","template:","this.count++","truth)です。","view","vue","vue({","vue.j","vuex","{","{{","}","})","},","}}","いつ、vuexを使うべきでしょうか？","からの良い引用です:","が必要なだけかもしれません。しかし、中規模から大規模の","これが","これにより、コンポーネントツリーは大きな","これはいくつかの要素をアプリ自身に含んでいます:","これは予測可能な方法によってのみ状態の変異を行うというルールを保証し、アプリケーション内の全てのコンポーネントのための集中型のストアとして機能します。","これらは\"単方向データフロー\"のコンセプトの極めてシンプルな責務です:","さらに、状態管理に関わる概念を定義、分離し、特定のルールを敷くことで、コードの構造と保守性を向上させることができます。","しかし、単純さは、共通の状態を共有する複数のコンポーネントを持ったときに、すぐに破綻します:","そして","それらが必要になったときに知るのです。","では、コンポーネントから共有している状態を抽出し、それをグローバルシングルトンで管理するのはどうでしょうか？","で作られたカウンターアプリをみてみましょう:","として深く入れ子になったコンポーネントに渡すのは面倒で、兄弟コンポーネントでは単純に機能しません。二つ目は、親子のインスタンスを直接参照したり、イベントを介して複数の状態のコピーを変更、同期することを試みるソリューションに頼っていることがよくあります。これらのパターンは、いずれも脆く、すぐにメンテナンスが困難なコードに繋がります。","となり、どのコンポーネントもツリー内のどこにあっても状態にアクセスしたり、アクションをトリガーできます!","とは何か?","とは何か？","なしで問題ないでしょう。単純な","の作者、dan","の粒度の細かいリアクティビティシステムを利用するよう特別に調整して実装されたライブラリだということです。","の背景にある基本的なアイディアであり、flux、","は","は、共有状態の管理に役立ちますが、さらに概念やボイラープレートのコストがかかります。これは、短期的生産性と長期的生産性のトレードオフです。","は効率的な更新のために、vue.j","は自然な次のステップとなるでしょう。これは","また","もし、あなたが大規模な","を導入した場合、冗長で恐ろしいと感じるかもしれません。そう感じることは全く普通です。あなたのアプリがシンプルであれば、vuex","を構築することなく、vuex","を構築する場合は、vue","アクション、これはビューからのユーザー入力に反応して、状態の変更を可能にする方法です。","アプリケーションのための","グローバルイベントバス","コンポーネントの外の状態をどうやってうまく扱うか考える絶好の機会です。vuex","ビュー、これは状態のただの宣言的なマッピングです。","ライブラリです。","ライブラリは眼鏡のようなものです:","一つ目は、プロパティ","他のパターンと異なるのは、vuex","公式の開発ツール拡張と連携し、設定なしでタイムトラベルデバッグやステートのスナップショットのエクスポートやインポートのような高度な機能を提供します。","単純な","状態、これは私達のアプリを動かす信頼できる情報源(the","状態管理パターン","異なるビューからのアクションで、同じ状態を変更する必要があります。","複数のビューが同じ状態に依存することがあります。"],"getting-started.html":["(state)","//","0","1","2つあります。","=",">","console.log(store.state.count)","const","count:","es2015","increment","mutations:","new","state.count++","state:","store","store.commit","store.commit('increment')","store.st","store.state.count","vue.use(vuex)","vuex","vuex.store({","{","}","})","},","こちらが","これから","これで","してから、ストアをつくってみましょう。vuex","そして","でストアオブジェクトの状態を参照でき、また","のコアコンセプトについて詳しく説明していきます。まずは状態（state）からはじめましょう。","のシンタックスを利用しています。","は、基本的にアプリケーションの状態（state）を保持するコンテナです。単純なグローバルオブジェクトとの違いが","もし触れたことがなければ、ぜひ触れてください！","をインストール","を使った最も基本的なカウンターアプリの例です。","を呼び出していることを確認しておいてください","を直接変更する代わりにミューテーションをコミットする理由は、状態の変更を明確に追跡したいからです。このシンプルな規約は、あなたのコードの意図をさらに明確にし、コードを読んだ時にアプリケーションの状態の変更について、論理的に考えることができるようにします。加えて、私たちに全ての変更のログを取ったり、状態のスナップショットを取ったり、タイムトラベルデバッグを行うようなツールを実装する余地を与えてくれます。","アプリケーションの中心にあるものはストアです。\"ストア\"","コンポーネントがストアから状態を取り出すとき、もしストアの状態が変化したら、ストアはリアクティブかつ効率的に更新を行います。","シンプルなストア","ストアの作成は、とても簡単です。ストアオブジェクトの初期状態と、いくつかのミューテーションを準備するだけです。","ストアの状態を直接変更することはできません。明示的にミューテーションをコミットすることによってのみ、ストアの状態を変更します。これによって、全ての状態の変更について追跡可能な記録を残すことが保証され、ツールでのアプリケーションの動作の理解を助けます。","ストアはリアクティブです。vue","ストアオブジェクトの状態はリアクティブなので、ストアの状態をコンポーネント内で使うには算出プロパティ内でただ状態を返せば良いです。コンポーネントメソッドでミューテーションをコミットすることによって状態の変更を行います。","メソッドで状態の変更を行うことができます。","モジュールシステムを利用しているときはあらかじめ","入門","注意:","私たちは、このドキュメントのコード例に"],"core-concepts.html":["この章では、vuex","これらのコンセプトを深く理解することは、vuex","それでは、始めましょう！","のコアコンセプトについて、以下を学習します。","を使用するにあたって不可欠です。","アクション","ゲッター","コアコンセプト","ステート","ミューテーション","モジュール"],"state.html":["\"store\"","\"注入\"","'#app',","'count'","'count',","'vuex'","()","(ecmascript","(singl","(state)","(これは、","*/","+","...","...mapstate({","/*","//","3","=","=>","])","`","`this`","`{{","app","components:","comput","computed:","const","count","count:","countalias:","counter","countpluslocalst","default","dom","el:","export","import","localcomput","map","mapstat","mapstate([","mapstate({","new","return","sourc","state","state.count","state.count,","state.count`","store","store,","store.state.count","template:","this.$stor","this.$store.state.count","this.count","this.localcount","tree)を使います。つまり、この単一なオブジェクトはアプリケーションレベルの状態が全て含まれており、\"信頼できる唯一の情報源","truth)\"","vue","vue({","vue.use(vuex)","vuex","vuex.mapst","{","}","})","},","}}`,","からローカルステートを参照するときは、通常の関数を使わなければいけません","が変わるたび、算出プロパティの再評価が発生し、関連した","しかし、このパターンでは、コンポーネントがグローバルストアシングルトンに依存してしまいます。","する機構を提供しています:","で、シンタックスをかなり単純にできます:","です)","で各コンポーネントから参照することができます。","で有効にできます)、すべての子コンポーネントにストアを","で返すことです。","として公開されています","として機能します。これは、通常、アプリケーションごとに1つしかストアは持たないことを意味します。単一ステートツリーは状態の特定の部分を見つけること、デバッグのために現在のアプリケーションの状態のスナップショットを撮ることを容易にします。","と同じです","に渡すこともできます。","に渡せるように、複数のオブジェクトをひとつにマージするユーティリティを使わなければいけません。しかし、オブジェクトスプレッド演算子","に置くことで、状態の変更がさらに明示的、デバッグ可能になりますが、ときにはコードを冗長でまわりくどいものにします。状態の一部がひとつのコンポーネントだけに属している場合は、それをローカルの状態として残しておくとよいでしょう。あなたは、トレードオフを考慮した上で、あなたのアプリの開発ニーズに合った決定をすべきです。","に表示するにはどうすればよいのでしょう？","の中に置くべき、というわけではありません。多くの状態を","の実装を変更しましょう:","の更新をトリガーします。","の状態を","は、ルートコンポーネントに","はオブジェクトを返すことに注意しましょう。どうやって、他のローカル算出プロパティと組み合わせるのでしょうか？","はリアクティブなので、ストアから状態を\"取り出す\"一番シンプルな方法は、単純にいくつかのストアの状態を","は単一ステートツリー","を使うということは、全ての状態を","アロー関数は、コードをとても簡潔にできます！","オブジェクトスプレット演算子で、外のオブジェクトとこのオブジェクトを混ぜる","オブジェクトスプレッド演算子","オプションで指定されたストアは、全ての子コンポーネントに注入されます","オプションを指定することで","オプションを渡すことで、渡されたストアをルートの全ての子コンポーネントに注入します。これは","コンポーネント","コンポーネントが複数のストアのステートプロパティやゲッターを必要としているとき、これらすべてにおいて、算出プロパティを宣言することは繰り返しで冗長です。これに対処するため、算出ゲッター関数を生成し、いくつかのキーストロークを省くのに役立つ","コンポーネントに入れる","コンポーネントはまだローカルステートを持つことできる","コンポーネントをつくってみましょう","ステート","ストア","ストアにある状態を","プロポーサルの","ヘルパー","ヘルパーを使うことができます:","マップされた算出プロパティの名前がステートサブツリーの名前と同じ場合は、文字列配列を","モジュールシステムを使っているとき、ストアの状態を使っているすべてのコンポーネントでインポートが必要です。また、コンポーネントのテストのときにモック化が必要となります。","ルートインスタンスに","単一ステートツリー","単一ステートツリーはモジュール性と競合しません。以降の章で、アプリケーションの状態とミューテーション(変更)をサブモジュールに分割する方法について説明します。","完全ビルドでは、ヘルパーは","文字列を渡すことは、`state","算出プロパティ","通常、最終的にひとつのオブジェクトを"],"getters.html":["\"ゲッター\"","'...',","'anothergetter',","'donetodoscount'","'donetodoscount',","'vuex'","()","(id)","(state)","(state,","...","...mapgetters([","...mapgetters({","//","1","1,","2,","=","===","=>",">","[","[{","]","])","`store.getters.donetodoscount`","`this.donecount`","comput","computed:","const","default","done:","donecount:","donetodos:","donetodoscount","donetodoscount:","export","fals","getters)","getters.donetodos.length","getters:","gettodobyid:","id)","id:","import","mapgett","new","operator）を使って","return","spread","state","state.todos.filter(todo","state.todos.find(todo","state:","store","store.gett","store.getters.donetodo","store.getters.donetodoscount","store.getters.gettodobyid(2)","text:","this.$store.getters.donetodoscount","this.$store.state.todos.filter(todo","todo.done)","todo.done).length","todo.id","todos:","true","vuex","vuex.store({","{","}","})","},","}]","どのコンポーネントの内部でも簡単にゲッターを利用することができます:","にマッピングさせる","に組み込む","もしこの関数を複数のコンポーネントで利用したくなったら、関数をコピーするか、あるいは関数を共用のヘルパーに切り出して複数の場所でインポートする必要があります。しかし、どちらも理想的とはいえません。","を","を利用するとストア内に","を受け取ります:","を定義することができます。それらをストアの算出プロパティと考えることができます。算出プロパティと同様に、ゲッターの結果はその依存関係に基づいて計算され、依存関係の一部が変更されたときにのみ再評価されます。","オブジェクトから取り出されます:","ゲッター","ゲッターは","ゲッターは第1引数として、state","ゲッターは第2引数として他のゲッターを受け取ります:","ゲッターを、スプレッド演算子（object","ゲッターを異なる名前でマッピングさせたいときはオブジェクトを使います:","ヘルパー","ヘルパーはストアのゲッターをローカルの算出プロパティにマッピングさせます:","例えば項目のリストをフィルタリングしたりカウントするときのように、ストアの状態を算出したいときがあります。","関数を返り値にすることで、ゲッターに引数を渡すこともできます。これは特にストアの中の配列を検索する時に役立ちます："],"mutations.html":["\"increment\"","\"タイプが","'./mutat","'increment'","'increment',","'incrementby'","'newprop',","'some_mutation'","'vuex'","(state)","(state,","+=","...","...mapmutations([","...mapmutations({","...state.obj,","//","1","10","10)","123","123)","2つのメソッドを両方呼び出すとき、それらがいつ呼び出されたか、どちらが先に呼び出されたかを、どうやって知ればよいのでしょう？これがまさに、状態変更と非同期の","2つの概念を分離したいという理由です。vuex","3","=","=>","[some_mutation]","]),","`this.$store.commit('increment')`","`this.$store.commit('incrementby',","`this.add()`","`this.increment()`","`this.incrementby(amount)`","add:","amount)`","amount:","api.callasyncmethod(()","const","count:","default","es2015","export","flux","import","increment","mapmut","methods:","mutat","mutations:","n","n)","name）機能を使用できます","new","newprop:","payload)","payload.amount","properti","silent:","some_mut","somemut","spread","state.count","state.count++","state.obj","state:","store","store.commit","store.commit('increment')","store.commit('increment',","store.commit({","store.j","syntax）","this.$store.commit('xxx')","true","type","type:","types'","types.j","vue","vue.set(obj,","vuex","vuex.store({","{","}","})","},","あらかじめ全ての必要なフィールドによって、ストアの初期状態を初期化することが望ましいです","いま、開発ツールのミューテーションのログを見ながら、アプリケーションのデバッグを行っていることを想像してください。全てのミューテーションをログに記録するためには、ミューテーションの前後の状態のスナップショットを捕捉することが必要です。しかし、上の例にあるミューテーション内の非同期コールバックは、それを不可能にします:","いろいろな","この機能は開発ツール内にミューテーション・フィルタが実装された後に非推奨になる予定です。","そのコールバックは、ミューテーションがコミットされた時点ではまだ呼び出されていません。そして、コールバックが実際にいつ呼び出されるかを、開発ツールは知る術がありません。いかなる状態変更でも、コールバック内で起きる場合は本質的に追跡不可能です。","では全てのミューテーションは同期的に行うという作法になっています:","といったイベント登録のようなものです。ミューテーションハンドラを起動するためにはミューテーションのタイプを指定して","と動作させているときと同じく、リアクティブな値に関する注意が必要であることを意味します:","と書くか、もしくはコンポーネントのメソッドを","によってリアクティブになっているので、状態を変更すると、状態を監視している","にマッピングする","に第3引数を渡すことで、特定のミューテーションをプラグインに気付かせないようにすること（\"silence\"）ができます:","に追加の引数を渡すこともできます。この追加の引数は、特定のミューテーションに対するペイロードと呼びます:","のストアの状態を変更できる唯一の方法は、ミューテーションをコミットすることです。vuex","のスプレッドシンタックス（object","のミューテーションがトリガーされたときに、このハンドラが呼ばれる\"","のミューテーションは、通常の","のミューテーションはイベントにとても近い概念です:","のリアクティブなルールに則ったミューテーション","の注入が必要）で、コンポーネント内でミューテーションをコミットできます:","の状態（state）を第1引数として取得し、実際に状態の変更を行います:","の算出プロパティ名（comput","はペイロードサポートする:","ひとつの重要なルールを覚えておきましょう。それはミューテーションハンドラ関数は同期的でなければならないということです。なぜか？次の例で考えてみましょう:","ほとんどの場合、ペイロードはオブジェクトにすべきです。そうすることで複数のフィールドを含められるようになり、またミューテーションがより記述的に記録されるようになります:","また","を","を使用して、次のように書くことができます:","を使用する。あるいは","を呼び出す必要があります:","アクションへ向けて","オブジェクトスタイルでコミットするとき、オブジェクト全体がペイロードとしてミューテーションハンドラに渡されます。したがってハンドラの例は上記と同じです:","オブジェクトスタイルのコミット","オプションは、どちらかいうと","コンポーネントは自動的に更新されます。これは","コンポーネント内におけるミューテーションのコミット","サイレントコミット","ストアの状態は","デフォルトでは全てのコミットされたミューテーションはプラグイン（開発ツール等）に送られます。しかし場合によっては、プラグインに全ての状態の変化を記録して欲しくないこともあるでしょう。あるいは、短い間隔やポーリングでのストアへの複数のコミットも、常に追跡する必要はないでしょう。こうしたケースでは、store.commit","プロパティを持つオブジェクトを使って、ミューテーションをコミットすることもできます:","ヘルパーを呼び出すこと（ルートの","ミューテーション","ミューテーションによる状態変更は、この時点で行われるべきです","ミューテーションは同期的でなければならない","ミューテーション・タイプに定数を使用する","全く新しいオブジェクトで既存のオブジェクトを置き換える。例えば、stage","各ミューテーションはタイプとハンドラを持ちます。ハンドラ関数は","定数を使用するかどうかは好みの問題です。多くの開発者による大規模なプロジェクトで役に立ちますが、完全にオプションなので、もしお気に召さなければ使用しなくても構いません。","定数を関数名として使用できる","実装において、ミューテーション・タイプに定数を使用することが共通して見られるパターンです。これはコードに対してリントツールのようなツールを利用できるという利点があり、また単一ファイルに全ての定数を設定することによって、共同で作業する人に、アプリケーション全体で何のミューテーションが可能であるかを一目見ただけで理解できるようにします:","実際に","新しいプロパティをオブジェクトに追加するとき、以下のいずれかが必要です:","注意:","状態を変更する","状態変更を非同期に組み合わせることは、プログラムの動きを予測することを非常に困難にします。例えば、状態を変更する非同期コールバックを持った","直接ミューテーションハンドラを呼び出すことはできません。この","追加の引数を渡してコミットする","非同期的な命令を扱うためにアクションを見てみましょう。"],"actions.html":["'increment'","'increment',","'incrementasync',","'incrementby'","'vuex'","()","(context)","(state)","({",")","...","...mapactions([","...mapactions({","/","//","0","10","1000)","=","=>","[...state.cart.added]","]),","`actiona`","`getdata()`","`getotherdata()`","`mapactions`","`this.$store.dispatch('increment')`","`this.$store.dispatch('incrementby',","`this.add()`","`this.increment()`","`this.incrementby(amount)`","actiona","actionb","actions:","add:","amount)`","amount:","api","async","await","checkout","commit","commit('gotdata',","commit('gototherdata',","commit('increment')","commit('somemutation')","commit('someothermutation')","commit(types.checkout_failure,","commit(types.checkout_request)","commit(types.checkout_success),","commit,","const","context.commit","context.commit('increment')","context.gett","context.st","count:","default","destructuring）がよく使われます（特に","dispatch('actiona')","dispatch('actiona').then(()","dispatch,","es2015","export","getdata())","getotherdata())","import","increment","incrementasync","mapact","methods:","mutations:","new","products)","products,","promis","promise((resolve,","reject)","resolve()","return","savedcartitem","savedcartitems)","settimeout(()","shop","shop.buyproducts(","state","state.count++","state:","store","store.commit('increment')","store.dispatch","store.dispatch('actiona').then(()","store.dispatch('increment')","store.dispatch('incrementasync',","store.dispatch({","this.$store.dispatch('xxx')","type:","vuex.store({","{","}","})","},","が","がトリガーされたアクションハンドラによって返された","がトリガーとなって実行されます:","が完了するのを待機する","が戻り値として返ってくることになります。","これは一見ばかげて見えるかもしれません。つまり、カウントをインクリメントしたいときに、どうして直接","すると次のようにできます:","で、状態やゲッターにアクセスできます。なぜコンテキストオブジェクトがストアインスタンスそのものではないのかは、後ほどモジュールで説明します。","でコンポーネント内でアクションをディスパッチできます。あるいはコンポーネントのメソッドを","で異なるモジュール内の複数のアクションハンドラをトリガーすることができます。そのようなケースでは、全てのトリガーされたハンドラが解決されたときに解決する","と","にマッピングする","の呼び出しと、複数のミューテーションのコミットをします:","の引数分割束縛（argument","の注入が必要です）:","は成功時のコールバックと失敗時のコールバックを受け取る","まず知っておくべきことは","また別のアクションで下記のように書くと:","もまた","もペイロードをサポートする:","や","より実践的な例として、ショッピングカートをチェックアウトするアクションを挙げます。このアクションは非同期な","を","を使用することで、次のようにアクションを組み合わせることができます:","を処理できることと、store.dispatch","を呼び出してミューテーションをコミットしないのか、と。ミューテーションは同期的でなければならないというのを覚えていますか？アクションはそうではありません。アクションの中では非同期の操作を行うことができます。","を呼び出すことでミューテーションをコミットできます。あるいは","を複数回呼び出す必要があるとき）:","を返すことです。","を返すことを想定している","アクション","アクションのディスパッチ","アクションは","アクションは、状態を変更するのではなく、ミューテーションをコミットします。","アクションはしばしば非同期処理を行いますが、アクションが完了したことをどうやって知れば良いのでしょう？そしてもっと重要なことは、さらに複雑な非同期処理を取り扱うために、どうやって複数のアクションを構成させるかということです。","アクションはペイロード形式とオブジェクトスタイルのディスパッチをサポートします:","アクションはミューテーションと似ていますが、下記の点で異なります:","アクションは任意の非同期処理を含むことができます。","アクションを構成する","アクションハンドラはストアインスタンスのメソッドやプロパティのセットと同じものを呼び出せるコンテキストオブジェクトを受け取ります。したがって","オブジェクトを使ってディスパッチする","コンポーネント内でのアクションのディスパッチ","シンプルなアクションを登録してみましょう:","チェックアウトのリクエストを送信し、楽観的にカート内をクリアする","ヘルパーを使うこともできます（ルートの","ペイロードを使ってディスパッチする","一連の非同期の処理を実行しつつ、ミューテーションのコミットによってのみ副作用（状態の変更）を与えていることに注意してください。","失敗時の処理","実際にはコードを少しシンプルにするために","成功時の処理","最終的に","現在のカート内の商品を保存する"],"modules.html":["%","''","'bar'","'foo',","'foo/somegetter'","'foo/somemutation'","'foo/someotheraction'","'foo/someothergetter'","'mymodule'],","'once'","'pluginaction')","'some/nested/module/bar'","'some/nested/module/foo',","'somegetter'","'somemutation'","'someotheraction'","'someothergetter'","'vuex'","((state.count","()","(2.3.0","(ctx,","(option","(prefix)","(state)","(state,","(store)","({","*","+","...","...mapactions('some/nested/module',","...mapactions([","...mapstate('some/nested/module',","...mapstate({","//","///","0","1)","2","=","===","=>",">","[","])","`getters`","`modulea`","`moduleb`","`mymodule`","`nested/mymodule`","`root`","`some/nested/module`","`state`","a:","account:","actions:","b:","commit","commit('account/login')","commit('increment')","commit('somemutation')","commit('somemutation',","commit,","computed:","const","context","context.rootst","context.st","count:","createnamespacedhelp","createnamespacedhelpers('some/nested/module')","createplugin","creation）の際に宣言された、静的なモジュールはこのメソッドで削除できないことに注意してください。","data","default","dispatch('account/login')","dispatch('someotheraction')","dispatch('someotheraction',","dispatch,","doublecount","export","fals","foo:","function","getters,","getters.somegett","getters.someothergett","getters:","getters['account/isadmin']","getters['account/posts/popular']","getters['account/profile']","getters、dispatch、commit","import","increment","incrementifoddonrootsum","isadmin","login","mapact","mapmut","mapstate,","mapstate、mapgetters、mapactions、そして","methods:","module,","modulea","modulea,","moduleb","modules:","mutations:","mypage:","myreusablemodul","namespac","namespaced:","new","null,","options.namespac","payload)","popular","posts:","preservestate:","profil","return","root:","rootgett","rootgetters)","rootgetters.somegett","rootgetters.someothergett","rootstat","rootstate)","rootstate,","rootstate.count","rootstate.count)","router","runinnewcontext","someact","somegett","someotheract","someothergetter:","state","state,","state.a,","state.b","state.count","state.count++","state.some.nested.module.a,","state.some.nested.module.b","state:","store","store.dispatch(namespac","store.registermodul","store.registermodule('mymodule',","store.registermodule(['nested',","store.state.a","store.state.b","store.state.mymodul","store.state.nested.mymodul","store.unregistermodule(modulename)","sumwithrootcount","sync","true","true,","true}","vue","vuex","vuex.store({","{","{root:","{})","||","}","})","}))でこれを実現できます。","},","このような場合は、第1引数としてモジュールの名前空間文字列をヘルパーに渡すことで、そのモジュールをコンテキストとして使用してすべてのバインディングを行うことができます。上記は次のように単純化できます。","これにより、複数のモジュールが同じミューテーション/アクションタイプに反応することができます。","これは、実際には","さらに、createnamespacedhelp","さらに名前空間をネストする","そして、vuex","そのような場合に役立てるため","ではステートフルなシングルトンは避けます。)","ではストアをモジュールに分割できるようになっています。それぞれのモジュールは、モジュール自身の状態（state）、ミューテーション、アクション、ゲッター、モジュールさえも内包できます（モジュールをネストできます）","でアクセスします。","でアクセスできます:","と","と全く同じ問題です。従って解決策も同じです。モジュールの状態を宣言するために関数を使用してください","によって名前空間に分けることができます。モジュールが登録されると、そのゲッター、アクション、およびミューテーションのすべてが、モジュールが登録されているパスに基づいて自動的に名前空間に入れられます。例えば:","の3番目の引数として","のとき、ssr","のステート","はこのモジュールのゲッターにローカライズされています","はゲッター関数の第3引数と第4引数として渡され、アクション関数に渡される","はモジュールのローカルステート","はローカルステートにアクセスでき、ルートのステートは","また、モジュールのゲッターの中では、ルートのステートは第3引数でアクセスできます:","または","を使うことができます","を使用することによって名前空間付けされたヘルパーを作成できます。指定された名前空間の値にバインドされた新しいコンポーネントバインディングヘルパーを持つオブジェクトを返します:","を受け取ります。言い換えれば、同じモジュールに接頭辞","を呼び出せば、動的に登録したモジュールを削除できます。ただしストア作成（store","を書き込まずに、モジュールアセットを使用することができます。名前空間オプションの切り替えは、モジュール内のコードには影響しません。","を活用できます。例えば","を渡します。","を統合しています。","を調べます","アクションをディスパッチするか、グローバル名前空間にミューテーションをコミットするには、dispatch","オブジェクトのプロパティとしても公開されます。","オプション(store.registermodule('a',","オプションが","オプションを受け入れます","グローバルステートとゲッターを使いたい場合、rootstat","ゲッターの第4引数経由で","コンポーネント内部の","サーバサイドレンダリングされたアプリケーションから状態を保持するなど、新しいモジュールを登録するときに、以前の状態を保持したい場合があります。preservest","ストアが作られた後に","ストアに追加できるようにすると、モジュールの予測できない名前空間が気になるかもしれません。あなたのモジュールは、プラグインユーザーが名前空間付きモジュールの元にモジュールを追加すると、その名前空間に属するようになります。この状況に適応するには、プラグインオプションを使用して名前空間の値を受け取る必要があります。","ディスパッチとコミットもこのモジュール用にローカライズされています","デフォルトでは、アクション、ミューテーション、そしてゲッター内部のモジュールはグローバル名前空間の元で登録されます","トップからボトムまでフラクタル構造です:","ネストされた","ネストされたモジュール","プラグインが、モジュールをアプリケーションのストアに付属させることで、状態の管理に","プラグインオプションで名前空間値を取得し、","プラグイン開発者向けの注意事項","プラグイン関数を返す","ヘルパーを使って名前空間付きモジュールをコンポーネントにバインディングするとき、少し冗長になります:","ミューテーション、アクション、ゲッター...","メソッドを使って、モジュールを登録できます:","モジュール","モジュールのアセット","モジュールのステートには","モジュールのミューテーションやゲッターの中では、渡される第1引数はモジュールのローカルステートです。","モジュールのローカルステート","モジュールの再利用","モジュールの状態を宣言するために単純なオブジェクトを使用すると、その状態オブジェクトは参照によって共有され、変更時にクロスストア/モジュールの状態汚染を引き起こします。(例:","モジュールをより自己完結型にまた再利用可能なものにしたい場合は、それを","モジュールを提供するプラグインを作成し、ユーザーがそれらを","モジュールを登録します","モジュールステートはすでにネストされており、名前空間のオプションによって影響を受けません","ライブラリは、動的に付属させたモジュール内部でアプリケーションのルーティングのステートを管理することで","ルートディスパッチ/コミットの","以降でサポートされます):","動的なモジュール登録があることで、他の","動的にモジュールを登録する","単一ステートツリーを使うため、アプリケーションの全ての状態は、一つの大きなストアオブジェクトに内包されます。しかしながら、アプリケーションが大きくなるにつれて、ストアオブジェクトは膨れ上がってきます。","同じストアに同じモジュールを複数回登録する","同じモジュールを使用する複数のストアを作成する;","同様に、モジュールのアクションの中では","名前空間","名前空間によるバインディングヘルパー","名前空間のゲッターとアクションは、ローカライズされた","名前空間をプラグインモジュールの型に追加する","名前空間付きモジュールでのグローバルアセットへのアクセス","時どき、モジュールの複数インスタンスを作成する必要があるかもしれません。例えば:","親モジュールから名前空間を継承する"],"structure.html":["#","...","actions.j","api","app.vu","cart","cart.j","compon","exampl","index.html","index.j","main.j","modul","mutations.j","product","products.j","shop","store","vuex","│","└──","├──","これらのルールに従っている限り、プロジェクトをどのように構造化するかはあなた次第です。もしストアファイルが大きくなり過ぎたら、単純にアクションやミューテーション、ゲッターをそれぞれ別のファイルに切り出すことができます。","それなりに手の込んだアプリケーションであれば、モジュールを活用する必要が出てきそうです。プロジェクトの構造の例は以下のようになります:","は実際のところ、あなたがコードを構造化する方法を制限しません。もっと正確に言うと、それより高いレベルの原理原則を適用させます:","をみてみるのもよいでしょう。","アクションのルートファイル","アプリケーションの構造","アプリケーションレベルの状態はストアに集約されます。","ミューテーションのルートファイル","モジュール","モジュールを集めてストアをエクスポートする","参考として","呼び出しを抽象化する","状態を変更する唯一の方法は、同期的に処理を行うミューテーションをコミットすることのみです。","非同期的なロジックはカプセル化されるべきであり、それはアクションによって構成されます。"],"plugins.html":["!==","\"ablacklistedmutation\"","'production'","'update_data')","'vuex/dist/logger'","(mutation)","(mutation,","(mutation.typ","(socket)","(state)","(これは不自然な例です。実際には、さらに複雑なタスクのために",")","...","//",":","=","===","=>","?","[]","[createlogger()]","[myplugin]","[mypluginwithsnapshot]","[plugin]","_.clonedeep(state)","_.clonedeep(store.state)","`console`","`mutation`","`nextstate`","`prevstate`","`{","api","browserifi","collapsed:","console,","const","createlogg","createlogger({","createplugin","createwebsocketplugin","createwebsocketplugin(socket)","data","data)","default","devtool","export","fals","false,","filter","function","import","logger","logger:","mutation.payload)","mutation.typ","mutations,","mutationtransform","myplugin","mypluginwithsnapshot","new","nextstat","payload","plugin","plugins:","prevstat","process.env.node_env","product","return","socket.emit('update',","socket.on('data',","state)","state,","state.subtre","stateafter)","statebefore,","store","store.commit('receive_data',","store.subscribe((mutation)","store.subscribe((mutation,","transform","type,","vue","vuex","vuex.store({","webpack","websocket","{","}","})","},","}`","、","が必要になります。","そして、このように利用することができます:","それぞれのミューテーションの後に呼ばれます","です","ではdefineplugin","ではenvifi","では、","と","には、一般的なデバッグに利用する用途の備え付けのロガープラグインがあります。","に置き換えるために、","の実装,","の形式でログ出力されます","の形式で提供されます","は","は、各ミューテーションへのフックを公開する","もし、あなたが","や","を","を使っている場合は、これは不要でしょう。","を使っていれば、ビルドツールにそれを処理させることができます:","を比較...","を返します","オプションを受け付けます。","ストア","ストアが初期化されたときに呼ばれます","タグで直接読み込むことができ、createvuexlogg","デフォルトは","データソースとストアを例にします","ビルトインロガープラグイン","プラグイン","プラグインは、単一の引数としてストアを受けつけるただの関数です:","プラグインは直接、状態を変更できません。これはコンポーネントに似ています。プラグインはコンポーネント同様に、ミューテーションのコミットによる変更のトリガーだけで状態を変更できます。","プラグイン内でのミューテーションのコミット","ミューテーションのコミットによるストアとデータソースの同期をプラグインで実現できます。","ミューテーションは","ミューテーションは、`{","ミューテーションを記録する必要がある場合は、`true`","ロガーファイルは、他にも","ロガープラグインは、状態のスナップショットを撮ることに注意しましょう。スナップショットを撮ることはコストがかかるため、開発中だけ利用してください。","ロギングの前に、状態を変換します","ログ出力されたミューテーションを自動で展開します","上のように記述すれば、プラグインはデフォルトで利用されることになります。本番環境(","任意の方法でそれをフォーマットできます","例えば、特定のサブツリーのみを返します","時々、状態の\"スナップショット\"を撮って、ミューテーション前後の状態を比較したくなることがあるでしょう。それを実現するために、状態オブジェクトのディープコピーを行う必要があります:","次のミューテーションのために状態を保存","状態のスナップショットを撮る","状態のスナップショットを撮るプラグインはアプリケーションの開発の間だけ使われるべきです。","関数がグローバルに公開されます。","関数は、追加でいくつかのオプションを受け取れます):","関数はいくつかのオプションを受け取ります:"],"strict.html":["!==","'production'","...","//","=","const","new","process.env.node_env","store","strict:","true","vs","vuex","vuex.store({","})","の状態がミューテーションハンドラの外部で変更されたら、エラーを投げるようになります。これで全ての状態変更がデバッギングツールで明示的に追跡できることが保証されます。","を作成するときに、ただ","を指定するだけです:","プラグインと同様に、ビルドツールに処理させることができます:","厳格モード","厳格モードでは","厳格（strict）モードを有効にするには","本番環境","本番環境で厳格モードを有効にしてデプロイしてはいけません！厳格モードでは不適切なミューテーションを検出するためにステートツリーに対して深い監視を実行します。パフォーマンスコストを回避するために本番環境では無効にしてください。","開発環境"],"forms.html":["\"vuex","()","(comput","(e)","(state,","(value)","...","...mapstate({","//","=","=>","chang","computed:","e.target.value)","input","messag","message)","message:","methods:","model","mutations:","obj","obj.messag","property)","return","set","state","state.obj.messag","this.$store.commit('updatemessage',","this.$store.state.obj.messag","updatemessag","v","value)","vuex","way\"","{","}","})","},","がストアからオブジェクトを返す算出プロパティ","それに対処するための","でユーザーが入力するとき、直接","と","と仮定すると、v","に属する状態の一部で","のいくつかの有用な機能が使えません。代わりに、セッターで双方向算出プロパティを使うアプローチがあります。","のミューテーションハンドラ内部で処理されていないため、エラーを投げます。","の値をバインディングし、input","は","は、","または","を使用するとき、vuex","を使用するのは少しトリッキーです:","を変更します。厳格モードでは、この変更は明示的に","イベントでアクションを呼び出すことです:","フォームの扱い","ミューテーションのハンドラは以下のようになります:","ローカルステートよりもかなり冗長で、v","厳格モードで","双方向算出プロパティ","確かに、上記の例は単純な"],"testing.html":["'../api/shop'","'../api/shop':","'./getters'","'./store'","'./test.js',","'apple',","'babel","'carrot',","'chai'","'fruit'","'mocha","'orange',","'receive_products',","'request_products'","'test","'vegetable'","()","(action,","(cb)","(count","(error)","(expectedmutations.length","(payload)","(state,","(type,","({","*/","+","...","/*","//","/\\.js$/,","/node_modules/","0","0)","1,","100)","2,","3,","=","===","=>",">=","[","]","])","],","__dirname,","action","action({","actions.j","actions.spec.j","actionsinjector","actionsinjector({","api","bundl","bundle.j","bundle.js'","catch","category:","cb([","chai","commit","commit('receive_products',","commit('request_products')","commit,","const","count","count++","count:","default","describe('actions',","describe('getters',","describe('mutations',","dev","done","done()","done(error)","done)","entri","entry:","es2015","exclude:","expect","expect(count).to.equal(0)","expect(mutation.payload).to.deep.equal(payload)","expect(mutation.type).to.equal(type)","expect(result).to.deep.equal([","expect(state.count).to.equal(1)","expectedmutations,","expectedmutations.length)","expectedmutations[count]","export","filename:","filtercategori","filteredproduct","getallproduct","getproduct","getter","getters.filteredproducts(state,","getters.j","getters.spec.j","id:","import","increment","increment(state)","increment:","inject","inlin","it('filteredproducts',","it('getallproducts',","it('increment',","karma","loader","loader!./actions')","loader!./test.js'","loader!babel","loader',","loader:","loaders:","localhost:8080/webpack","mocha","module.export","module:","mutat","mutations.j","mutations.spec.j","new","node","null,","output:","path:","payload)","payload,","payload:","product.categori","products)","products:","requir","require('inject","result","return","server","server/test","settimeout(()","shop","shop.getproducts(product","state","state,","state.count++","state.products.filter(product","store.j","test","test:","testact","testaction(actions.getallproducts,","title:","tri","type:","vue","vuex","vuex.store({","webpack","webpack.config.j","{","{},","}","})","},","ここでは","それから下記コマンドを実行します:","での実行","でテストをバンドルでき、それを直接","でユニットテストしたい主な部分はミューテーションとアクションです。","で実行できます。別の方法として、本当のブラウザでテストを実行するためには","と","に変更する","に直接依存関係を持つことはないでしょう。したがって、単純に","のために","のモジュールを使っていて","の設定を作成します（.babelrc","または","もあわせて使います）:","もしゲッターが複雑な計算を行っているならば、テストコードを書く価値があります。ゲッターはミューテーションと同様の理由でテストしやすいです。","を","をインストールする","を使ったブラウザでの実行","を使って、モック化された依存関係を注入できるようにするモジュールファクトリーを返す","を使ってテストファイルをバンドルすることができます。","を使用してミューテーションをテストする例です（あなたの好きな任意のフレームワーク/アサーションライブラリを使用できます）:","を使用できます。","を呼び出す可能性があるため、ミューテーションのテストよりも少し注意が必要です。アクションをテストするとき、通常、いくつかの段階でモックを作る必要があります。例えば","を開く","を開始する","アクションのテスト","アクションは外部の","ゲッターから結果を受け取る","ゲッターのテスト","ゲッターのテストの例:","ゲッターをモックする","コミットをモックする","ステートのモック","ステートをモックする","テスト","テストの実行","ドキュメント","ファイルの中にミューテーションがあるなら、デフォルトエクスポートに加えて、名前付きエクスポートでミューテーションをエクスポートできます。","ブラウザで","ブラウザでの実行","ミューテーションのテスト","ミューテーションの分割束縛","ミューテーションは完全に引数に依存しているだけの関数であるため、テストするのがとても簡単です。効果的なやり方として、もし","ミューテーションやアクションが適切に書かれている場合は、適切にモック化された後、テストコードはブラウザの","ミューテーションを適用する","モックによってモジュールを作成する","モック化したストアと引数でアクションを呼び出す","レスポンスのモック","上記","以下のような","内のセットアップ方法を参考にしてください。","名前付きエクスポートでミューテーションをエクスポートする","呼び出されるべきミューテーションが残っていないか確認する","呼び出しをサービスとして抽象化し、そしてテストの内部ではそのサービスをモックにすることができます。簡単に依存関係をモック化するために、webpack","期待されるミューテーションをアクションが呼び出すかをテストするためのヘルパー","構文を使用する","私たちが","結果を検証する","設定から","設定を使用して","非同期なアクションのテストの例:"],"hot-reload.html":["'./modules/a'","'./modules/a'],","'./mutations'","'vue'","'vuex'","()","(module.hot)","...",".default","//","6","=","=>","a:","api","babel","browserifi","const","exampleをチェックアウトしてください。","hmr","hot","import","modul","module.hot.accept(['./mutations',","modulea","modules:","mutat","mutations,","mutations:","new","newact","newmodulea","newmut","newmutations,","replac","require('./actions').default","require('./mutations').default","state","state,","store","store.hotupdate({","store.j","vue","vue.use(vuex)","vuex","vuex.store({","webpack","{","}","})","では","の","のモジュール出力のため、ここでは","は","を使用することで、アプリケーションの開発を行っている間のミューテーション、モジュール、アクション、ゲッターのホットリローディングをサポートします。browserifi","を追加しなければならない","プラグインを使用することができます。","ホットモジュールとしてアクションとモジュールを受け付けます","ホットリローディング","ホットリローディングを試したい場合は、counter","ミューテーションとモジュールのホットリローディングのために、store.hotupdate()","メソッドを利用する必要があります:","新しいアクションとミューテーションにスワップ","更新されたモジュールをインポートする"],"api.html":["'vuex'","...","...option","//","2.5.0","=","=>","[key:","[type:","`store.commit`","`store.dispatch`","`store.getters`","`store.state`","action","actions?,","any,","api","array","array)","array,","boolean","cb:","commit(mutation:","commit(type:","commit,","comput","console.log(action.payload)","console.log(action.type)","console.log(mutation.payload)","console.log(mutation.type)","const","context","context.st","createnamespacedhelpers(namespace:","dispatch(action:","dispatch(type:","dispatch,","fals","function","function)","function,","getter","getters,","getters?,","hotupdate(newoptions:","import","key:","map:","mapactions(namespace?:","mapgetters(namespace?:","mapmut","mapmutations(namespace?:","mapstate(namespace?:","mapstate、mapgetters、mapact","method","modul","module,","module:","modules?","mutat","new","object","object)","object):","object,","observ","option","options?:","payload","payload?:","plugin","preservestate:","registermodule(path:","replacestate(state:","root","root:","rootgett","rootstate,","state","state)","state,","store","store.gett","store.subscribe((mutation,","store.subscribeaction((action,","strict","string","string):","string,","string]:","subscribe(handler:","subscribeaction(handler:","true","type:","unregistermodule(path:","vue","vuex","vuex.stor","vuex.store({","watch(getter:","websocket","{","|","}","})","},","が含まれます。詳細はこちら","すべてのトリガーされたアクションハンドラを解決するpromiseを返します。詳細","そして","で新規追加","と","と同じ","と同じ。ただしモジュール内に限る","と同じか、モジュール内にあればローカルゲッター","と同じか、モジュール内にあればローカルステート","なアクションにディスパッチできる","なミューテーションにコミットできる","のvm.$watchメソッドと同じオプションをオプションのオブジェクトとして受け付けます。","のような外から渡されるデータのためにミューテーションをディスパッチします。","の状態の変更を行うと、エラーが投げられます。","は、全てのミューテーションの後に呼ばれ、引数として、ミューテーション","はディスパッチされたアクションごとに呼び出され、アクション記述子と現在のストア状態を引数として受け取ります:","は前の状態を保存する","は名前空間付きモジュールで","もローカルステートを指すようになります。","や","を2番目の引数として受け取ります。","を受け取ります。","を含むことができます。モジュールの状態は、モジュールのキーを使って、ストアのルートステートに結合されます。モジュールのミューテーションとゲッターは、第一引数としてルートステートの代わりに、モジュールのローカルステートだけを受け取り、モジュールのアクションの","を常に受け取り(モジュール内で定義されていれば、モジュールのローカルステートを受け取り)、指定されていれば第二引数に","を持つことができます。サーバサイドレンダリングに役立ちます。","を持つことできます。","を持つことできます。詳細","を最初の引数として、","アクションをディスパッチします。option","アクションをディスパッチするコンポーネントの","インスタンスプロパティ","インスタンスメソッド","オブジェクトを受け取ります。:","オブジェクトを返す関数を渡す場合、返されたオブジェクトはルートステートとして使用されます。これは特にモジュールの再利用のためにステートオブジェクトを再利用する場合に便利です。詳細","オプションを作成します。詳細","グローバルステート","ゲッターの評価後の値を返すコンポーネントの","ゲッター関数は次の引数を受け取ります:","コンストラクタオプション","コンポーネントをバインドするヘルパー","サブモジュールを含む次のような形式のオブジェクトはストアにマージされます。","ストアにアクションを登録します。ハンドラ関数は次のプロパティを持つ","ストアにゲッターを登録します.","ストアにミューテーションを登録します。ハンドラ関数は第一引数に","ストアのための","ストアのサブツリーを返すコンポーネントの","ストアのルートステートを置き換えます。これは、ステートのハイドレーションやタイムトラベルのためだけに利用すべきです。","ストアへのミューテーションを購読します。handler","ストアを厳格モードにします。厳格モードでは、ミューテーションハンドラ以外で、","ストアアクションを購読します。handler","ディスクリプタとミューテーション後の状態を受け取ります。","デフォルト:","プラグインで最も一般的に使用されます。detail","プラグインの中でもっともよく利用されます。詳細","プラグイン関数の配列は、ストアに適用されます。このプラグインは、ストアだけを引数として受け取り、外部への永続化、ロギング、デバッギングのために、ミューテーションを監視するか、または、","ミューテーションをコミットします。option","ミューテーションをコミットするコンポーネントの","モジュールで定義されたときの仕様","モジュールで定義された場合、モジュールのローカルステート","モジュール内で定義されていればモジュールのローカルステート","リアクティブにゲッター関数の返す値を監視します。値が変わった場合は、コールバックを呼びます。ゲッターはストアの","リファレンス","ルートステート、読み取り専用です。","ルートステートオブジェクトです。詳細","上に公開されます。","全てのゲッター","動的なモジュールを登録します。詳細","動的なモジュールを解除します。詳細","各モジュールは、ルートオプションに似た","名前空間付けられたコンポーネントバインディングのヘルパーを作成します。返されるオブジェクトは指定された名前空間にバインドされた","型:","新しいアクションとミューテーションをホットスワップします。詳細","現在のモジュールのモジュールのローカルゲッター","登録されたゲッターは","登録されているゲッターを公開します。読み取り専用です。","監視を止める場合は、ハンドラ関数の返り値を関数として呼び出します。","第1引数は、オプションで名前空間文字列にすることができます。詳細","詳細"]},"length":17},"tokenStore":{"root":{"0":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"1":{"0":{"0":{"0":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931}}}},"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.006896551724137931}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}},"2":{"3":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"docs":{}},"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}},"s":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"2":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}},"n":{"docs":{},"d":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},".":{"3":{"docs":{},".":{"0":{"docs":{},"+":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"docs":{}}},"5":{"docs":{},".":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"+":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"docs":{}}},"docs":{}},")":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"つ":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}},"の":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"両":{"docs":{},"方":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"が":{"docs":{},"い":{"docs":{},"つ":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"か":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"ち":{"docs":{},"ら":{"docs":{},"が":{"docs":{},"先":{"docs":{},"に":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"か":{"docs":{},"を":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"や":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"知":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"よ":{"docs":{},"い":{"docs":{},"の":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"？":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"が":{"docs":{},"ま":{"docs":{},"さ":{"docs":{},"に":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"変":{"docs":{},"更":{"docs":{},"と":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"の":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"概":{"docs":{},"念":{"docs":{},"を":{"docs":{},"分":{"docs":{},"離":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"理":{"docs":{},"由":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}},"3":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}},"r":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003205128205128205}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},".":{"0":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}},"docs":{}},"ᵉ":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}},"4":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},"t":{"docs":{},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}},"ᵉ":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}},"6":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},")":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":10.027181688125895},"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.017964071856287425},"api.html":{"ref":"api.html","tf":0.0031645569620253164},"state.html":{"ref":"state.html","tf":0.00141643059490085}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.02413793103448276},"modules.html":{"ref":"modules.html","tf":0.00847457627118644}}},"i":{"docs":{},"n":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"(":{"docs":{},"{":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},"，":{"docs":{},"响":{"docs":{},"应":{"docs":{},"在":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006564551422319475},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}},"a":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931}}},"b":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931}}},"(":{"docs":{},"{":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"处":{"docs":{},"理":{"docs":{},"函":{"docs":{},"数":{"docs":{},"总":{"docs":{},"是":{"docs":{},"接":{"docs":{},"受":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"解":{"docs":{},"析":{"docs":{},"所":{"docs":{},"有":{"docs":{},"被":{"docs":{},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}},"，":{"docs":{},"以":{"docs":{},"处":{"docs":{},"理":{"docs":{},"更":{"docs":{},"加":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"异":{"docs":{},"步":{"docs":{},"流":{"docs":{},"程":{"docs":{},"？":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"使":{"docs":{},"用":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"通":{"docs":{},"过":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188}}},"、":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}},"v":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"e":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}},"o":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0056625141562853904},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"n":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"e":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":10.027322404371585},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.005139500734214391},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.006142506142506142},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.008097165991902834}},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},".":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"p":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}},"é":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"structure.html":{"ref":"structure.html","tf":0.03389830508474576},"testing.html":{"ref":"testing.html","tf":0.006276150627615063},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":5.003164556962025},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"。":{"docs":{},"当":{"docs":{},"测":{"docs":{},"试":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"，":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.005050505050505051},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154}},"l":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"c":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"structure.html":{"ref":"structure.html","tf":3.3436426116838485},"intro.html":{"ref":"intro.html","tf":0.00964630225080386}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}}},"f":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"q":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"v":{"docs":{},"u":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}},"c":{"docs":{},"h":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}},"é":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"e":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"e":{"docs":{},"z":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"r":{"docs":{},"è":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"e":{"docs":{},"r":{"docs":{},"ç":{"docs":{},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"u":{"docs":{},"t":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"r":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"i":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}}},"l":{"docs":{},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.004838709677419355}}},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.008},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"s":{"docs":{},"o":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"o":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"s":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.005060728744939271}},"t":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"q":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{},"é":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"x":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.0056625141562853904},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},"r":{"docs":{},"e":{"docs":{},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}},"a":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}},"o":{"docs":{},"n":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"c":{"docs":{},"u":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"。":{"docs":{},"与":{"docs":{},"其":{"docs":{},"他":{"docs":{},"模":{"docs":{},"式":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"是":{"docs":{},"，":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{},"影":{"docs":{},"響":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.015822784810126583}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}},"o":{"docs":{},"w":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"i":{"docs":{},"v":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"ê":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.012145748987854251},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.004838709677419355}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00424929178470255},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}}},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"é":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017}}}}}},"u":{"docs":{},"m":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}},"e":{"docs":{},"z":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}},"e":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003205128205128205}},"s":{"docs":{},"）":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}},"时":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"同":{"docs":{},"一":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"额":{"docs":{},"外":{"docs":{},"添":{"docs":{},"加":{"docs":{},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"前":{"docs":{},"缀":{"docs":{},"。":{"docs":{},"更":{"docs":{},"改":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}}},"z":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.010344827586206896},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"n":{"docs":{},"c":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"a":{"docs":{},"g":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}},"e":{"docs":{},"c":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.006430868167202572},"getting-started.html":{"ref":"getting-started.html","tf":0.010666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.009915014164305949},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.009060022650056626},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.008076358296622614},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.011056511056511056},"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"actions.html":{"ref":"actions.html","tf":0.006896551724137931}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"y":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.013793103448275862}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"如":{"docs":{},"下":{"docs":{},"组":{"docs":{},"合":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00424929178470255},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}}},"t":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0016129032258064516},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.005722460658082976}},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"i":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},"e":{"docs":{},"z":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":3.441441441441441}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"u":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002457002457002457}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"api.html":{"ref":"api.html","tf":0.004838709677419355}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"e":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.01694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.032388663967611336},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"testing.html":{"ref":"testing.html","tf":0.03138075313807531},"hot-reload.html":{"ref":"hot-reload.html","tf":0.043478260869565216},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0056625141562853904}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"é":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"s":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"é":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"r":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"i":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}},"ç":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"core-concepts.html":{"ref":"core-concepts.html","tf":5.1}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"m":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}}},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"l":{"docs":{},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}}}},"i":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.02413793103448276},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.008086253369272238},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"api.html":{"ref":"api.html","tf":0.004838709677419355}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"(":{"docs":{},"'":{"docs":{},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"_":{"docs":{},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}},"。":{"docs":{},"换":{"docs":{},"言":{"docs":{},"之":{"docs":{},"，":{"docs":{},"你":{"docs":{},"在":{"docs":{},"使":{"docs":{},"用":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"容":{"docs":{},"（":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"getting-started.html":{"ref":"getting-started.html","tf":5.002666666666666}},"e":{"docs":{},"z":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"ç":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}},"u":{"docs":{},"n":{"docs":{},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.012578616352201259},"getting-started.html":{"ref":"getting-started.html","tf":0.014634146341463415},"state.html":{"ref":"state.html","tf":0.02122641509433962},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00784313725490196},"actions.html":{"ref":"actions.html","tf":0.006564551422319475},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"api.html":{"ref":"api.html","tf":0.00967741935483871}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"?":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}}},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.008583690987124463},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"intro.html":{"ref":"intro.html","tf":0.011254019292604502},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.015580736543909348},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"é":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"u":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"forms.html":{"ref":"forms.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":0.006329113924050633}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.025252525252525252},"getters.html":{"ref":"getters.html","tf":0.01744186046511628},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"forms.html":{"ref":"forms.html","tf":0.022727272727272728}}}}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"i":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"q":{"docs":{},"u":{"docs":{},"é":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"è":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"é":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"a":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}}},"i":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"é":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}},"u":{"docs":{},"r":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"p":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"s":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.020202020202020204},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.005050505050505051},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.025252525252525252},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"+":{"docs":{},"+":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}},"p":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"l":{"docs":{},"é":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}},"v":{"docs":{},"r":{"docs":{},"i":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03278688524590164}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"e":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":1.6714898177920685},"core-concepts.html":{"ref":"core-concepts.html","tf":0.08108108108108109},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"i":{"docs":{},"s":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}},"e":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"l":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"c":{"docs":{},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.02926829268292683},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"d":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.008},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"é":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"e":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"s":{"docs":{},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.05}}}}}}},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}}},"s":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}},"u":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"hot-reload.html":{"ref":"hot-reload.html","tf":3.3572854291417165}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}},"q":{"docs":{},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.010666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}},"m":{"docs":{},"p":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}},"r":{"docs":{},"g":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"a":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"l":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.0196078431372549},"actions.html":{"ref":"actions.html","tf":0.010940919037199124},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.004909983633387889},"api.html":{"ref":"api.html","tf":0.0064516129032258064}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.011764705882352941},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"é":{"docs":{"state.html":{"ref":"state.html","tf":0.0056657223796034},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"s":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"c":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"s":{"docs":{},"e":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"structure.html":{"ref":"structure.html","tf":0.03389830508474576}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"è":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.010460251046025104}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.005341880341880342},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926},"api.html":{"ref":"api.html","tf":0.008064516129032258}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"）":{"docs":{},"の":{"docs":{},"際":{"docs":{},"に":{"docs":{},"宣":{"docs":{},"言":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"、":{"docs":{},"静":{"docs":{},"的":{"docs":{},"な":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"削":{"docs":{},"除":{"docs":{},"で":{"docs":{},"き":{"docs":{},"な":{"docs":{},"い":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"注":{"docs":{},"意":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"é":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.005060728744939271}}},"z":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"b":{"docs":{},"(":{"docs":{},"[":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},"'":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":1.6763129689174703},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"œ":{"docs":{},"u":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"ô":{"docs":{},"t":{"docs":{},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"forms.html":{"ref":"forms.html","tf":5.007246376811594},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"a":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"forms.html":{"ref":"forms.html","tf":3.3381410256410255}}}}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}}}},"o":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.0028328611898017},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"s":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0084985835694051},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.01245753114382786},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.006607929515418502},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.010121457489878543}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"s":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"i":{"docs":{},"e":{"docs":{},"u":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}},"l":{"docs":{},"s":{"docs":{"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"e":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.00437636761487965}}}}},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"i":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"ç":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.005060728744939271}}}}},"u":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"e":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"w":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"r":{"docs":{},"a":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"i":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"a":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"i":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"s":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"r":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"api.html":{"ref":"api.html","tf":0.01129032258064516}},"?":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.008368200836820083}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"s":{"docs":{},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"\"":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"s":{"docs":{},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"u":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"、":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{},"、":{"docs":{},"和":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"é":{"docs":{},"c":{"docs":{},"h":{"docs":{},"é":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208},"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.012658227848101266}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}}}}}},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}},"b":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"è":{"docs":{},"q":{"docs":{},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"getting-started.html":{"ref":"getting-started.html","tf":5.004878048780488},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.007518796992481203},"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":0.012658227848101266}},"s":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01744186046511628},"modules.html":{"ref":"modules.html","tf":0.011864406779661017}}},"[":{"docs":{},"'":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},"]":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},"]":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},"。":{"docs":{},"当":{"docs":{},"我":{"docs":{},"们":{"docs":{},"在":{"docs":{},"之":{"docs":{},"后":{"docs":{},"介":{"docs":{},"绍":{"docs":{},"到":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"、":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}},"'":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"、":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"，":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"也":{"docs":{},"会":{"docs":{},"通":{"docs":{},"过":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"接":{"docs":{},"收":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"状":{"docs":{},"态":{"docs":{},"会":{"docs":{},"作":{"docs":{},"为":{"docs":{},"第":{"docs":{},"三":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"出":{"docs":{},"来":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"只":{"docs":{},"读":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"。":{"docs":{},"你":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":3.3381410256410255}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"api.html":{"ref":"api.html","tf":0.006072874493927126}},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}},"v":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.011254019292604502},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}},"u":{"docs":{},"x":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"n":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"o":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"o":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"i":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"i":{"docs":{},"t":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"o":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"w":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"s":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"é":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"n":{"docs":{},"è":{"docs":{},"r":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.0087527352297593},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"forms.html":{"ref":"forms.html","tf":5.007246376811594},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.0087527352297593},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"选":{"docs":{},"项":{"docs":{},"更":{"docs":{},"像":{"docs":{},"是":{"docs":{},"事":{"docs":{},"件":{"docs":{},"注":{"docs":{},"册":{"docs":{},"：":{"docs":{},"“":{"docs":{},"当":{"docs":{},"触":{"docs":{},"发":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}},"，":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"以":{"docs":{},"相":{"docs":{},"应":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}}},"r":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"u":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}},"l":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"o":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"j":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"@":{"2":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208},"getters.html":{"ref":"getters.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}},"r":{"docs":{},"e":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"'":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"m":{"docs":{},"r":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}},"y":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"é":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.03278688524590164},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"l":{"docs":{},"é":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"e":{"docs":{},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"é":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"p":{"docs":{},"i":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"i":{"docs":{},"d":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.007478632478632479},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}},"a":{"docs":{},"ç":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"e":{"docs":{},"g":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}},"è":{"docs":{},"g":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"é":{"docs":{},"g":{"docs":{},"r":{"docs":{},"é":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"e":{"docs":{},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.017857142857142856},"actions.html":{"ref":"actions.html","tf":0.010344827586206896},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}},"i":{"docs":{},"f":{"docs":{},"o":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"v":{"docs":{},"é":{"docs":{},"n":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"k":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"q":{"docs":{},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.020833333333333332}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"z":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"é":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"é":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"é":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03278688524590164},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.012552301255230125},"hot-reload.html":{"ref":"hot-reload.html","tf":0.043478260869565216},"api.html":{"ref":"api.html","tf":0.0031645569620253164},"intro.html":{"ref":"intro.html","tf":0.003215434083601286}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"s":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"s":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"é":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"r":{"docs":{},"é":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002936857562408223}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}},"t":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"'":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}},"?":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"e":{"docs":{},"m":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"a":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"l":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"api.html":{"ref":"api.html","tf":0.00708502024291498}}}}}}}},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.023255813953488372},"testing.html":{"ref":"testing.html","tf":0.010460251046025104}}},"é":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"s":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"a":{"docs":{},"d":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008038585209003215},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.0084985835694051},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}},"c":{"docs":{},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"strict.html":{"ref":"strict.html","tf":5.036764705882353},"api.html":{"ref":"api.html","tf":0.0012391573729863693},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02197802197802198},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"l":{"docs":{"forms.html":{"ref":"forms.html","tf":0.045454545454545456}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},")":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"strict.html":{"ref":"strict.html","tf":2.508130081300813}}}},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":10.029368575624082},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"a":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608}}},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617}}},"?":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.005341880341880342},"api.html":{"ref":"api.html","tf":0.0064516129032258064}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164},"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"docs":{},"'":{"docs":{},".":{"docs":{},"/":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},")":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"i":{"docs":{},"f":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}}},"é":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}},"è":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"r":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.007075471698113208},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.006564551422319475},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"c":{"docs":{},"k":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"h":{"docs":{},"a":{"docs":{"testing.html":{"ref":"testing.html","tf":0.008368200836820083}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}}}}}}},"y":{"docs":{},"e":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.012844036697247707},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.012552301255230125},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.00949367088607595}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.02142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"/":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}},"这":{"docs":{},"样":{"docs":{},"使":{"docs":{},"得":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"方":{"docs":{},"便":{"docs":{},"地":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"变":{"docs":{},"化":{"docs":{},"，":{"docs":{},"从":{"docs":{},"而":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"能":{"docs":{},"够":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"些":{"docs":{},"工":{"docs":{},"具":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"我":{"docs":{},"们":{"docs":{},"更":{"docs":{},"好":{"docs":{},"地":{"docs":{},"了":{"docs":{},"解":{"docs":{},"我":{"docs":{},"们":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.007575757575757576}}}}}}},"：":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"，":{"docs":{},"或":{"docs":{},"者":{"docs":{},"使":{"docs":{},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"通":{"docs":{},"过":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"不":{"docs":{},"同":{"docs":{},"在":{"docs":{},"于":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"直":{"docs":{},"接":{"docs":{},"变":{"docs":{},"更":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"将":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"插":{"docs":{},"件":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"同":{"docs":{},"步":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"到":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}},"并":{"docs":{},"且":{"docs":{},"使":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"处":{"docs":{},"理":{"docs":{},"函":{"docs":{},"数":{"docs":{},"总":{"docs":{},"是":{"docs":{},"接":{"docs":{},"受":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"、":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"、":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}},"（":{"docs":{},"用":{"docs":{},"于":{"docs":{},"外":{"docs":{},"部":{"docs":{},"地":{"docs":{},"数":{"docs":{},"据":{"docs":{},"持":{"docs":{},"久":{"docs":{},"化":{"docs":{},"、":{"docs":{},"记":{"docs":{},"录":{"docs":{},"或":{"docs":{},"调":{"docs":{},"试":{"docs":{},"）":{"docs":{},"或":{"docs":{},"者":{"docs":{},"提":{"docs":{},"交":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"u":{"docs":{},"r":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"é":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}}}}},"c":{"docs":{},"h":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}},"a":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}}}}}}}},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}},"k":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.014634146341463415},"state.html":{"ref":"state.html","tf":0.01650943396226415},"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"strict.html":{"ref":"strict.html","tf":0.02197802197802198}}}},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.002136752136752137}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"è":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.00784313725490196},"actions.html":{"ref":"actions.html","tf":0.0087527352297593}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.025252525252525252}},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"{":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0012391573729863693},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"、":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"、":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01744186046511628}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012658227848101266}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"d":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"r":{"docs":{},"k":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"api.html":{"ref":"api.html","tf":0.006329113924050633},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}},"s":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"t":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"e":{"docs":{},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"a":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"r":{"docs":{},"g":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"e":{"docs":{},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.022727272727272728}}}}}}},"u":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}},"i":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"x":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},"e":{"docs":{},"u":{"docs":{},"x":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"y":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"ê":{"docs":{},"m":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.006430868167202572},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.005873715124816446},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"é":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.004048582995951417}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"m":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},"o":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.041666666666666664},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},":":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"z":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.002936857562408223}}}},"d":{"docs":{},"e":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03278688524590164}}}}}}}}}}}}}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}}}},"w":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"n":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.018666666666666668},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.0084985835694051},"getters.html":{"ref":"getters.html","tf":0.01092896174863388},"mutations.html":{"ref":"mutations.html","tf":0.006795016987542469},"actions.html":{"ref":"actions.html","tf":0.011444921316165951},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"m":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.014684287812041116},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.006072874493927126}}},"m":{"docs":{},"é":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}}}},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"e":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.008086253369272238},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"s":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.005341880341880342}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"w":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"plugins.html":{"ref":"plugins.html","tf":0.016194331983805668},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}},"u":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}},"x":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}},"e":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.09836065573770492}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"e":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"m":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.01129032258064516}},"e":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"d":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006779661016949152}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}}}}},"）":{"docs":{},"機":{"docs":{},"能":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.004914004914004914}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}}}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"é":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332}}}},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}}}}}}},"'":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"z":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"z":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"z":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}}},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"s":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"x":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"state.html":{"ref":"state.html","tf":0.007082152974504249},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.025303643724696356}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"modules.html":{"ref":"modules.html","tf":0.005139500734214391},"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"api.html":{"ref":"api.html","tf":0.0031645569620253164},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.016194331983805668}}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"i":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"t":{"docs":{},"ô":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"c":{"docs":{},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"y":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"s":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"l":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.017684887459807074},"getting-started.html":{"ref":"getting-started.html","tf":5.008},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.007082152974504249},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.01245753114382786},"actions.html":{"ref":"actions.html","tf":0.010014306151645207},"modules.html":{"ref":"modules.html","tf":0.007342143906020558},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.022018348623853212},"strict.html":{"ref":"strict.html","tf":0.022058823529411766},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.006142506142506142},"hot-reload.html":{"ref":"hot-reload.html","tf":0.017964071856287425},"api.html":{"ref":"api.html","tf":0.006072874493927126}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"v":{"docs":{},"e":{"docs":{},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"modules.html":{"ref":"modules.html","tf":0.006607929515418502},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.004914004914004914},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.007075471698113208},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"è":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"strict.html":{"ref":"strict.html","tf":0.016260162601626018},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},"!":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}},"s":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}},"r":{"docs":{},"a":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}},"t":{"docs":{},"y":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.009433962264150943},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"forms.html":{"ref":"forms.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"s":{"docs":{},"?":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}},"i":{"docs":{},"é":{"docs":{},"t":{"docs":{},"é":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0084985835694051},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}}}}},"a":{"docs":{},"g":{"docs":{"actions.html":{"ref":"actions.html","tf":0.008583690987124463},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"é":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"m":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.013793103448275862},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}},"h":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},"é":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"u":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"e":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098}}}},"i":{"docs":{},"x":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}}}}}}},"m":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.00708502024291498}}}},"è":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"n":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404}}}},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"e":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"t":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"p":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}},"a":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"é":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}},"f":{"docs":{},"é":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}},"e":{"docs":{},"s":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}},"i":{"docs":{},"x":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"c":{"docs":{},"é":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0056625141562853904},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.005873715124816446},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.004914004914004914},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"e":{"docs":{},"n":{"docs":{},"f":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"s":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}},"i":{"docs":{},"è":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703}}}},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"m":{"docs":{},"è":{"docs":{},"t":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"o":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"c":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"s":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.007075471698113208},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}},"z":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"\"":{"docs":{},"?":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}}}}}}},"s":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"structure.html":{"ref":"structure.html","tf":0.010309278350515464}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"plugins.html":{"ref":"plugins.html","tf":0.012844036697247707},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856},"api.html":{"ref":"api.html","tf":0.008097165991902834}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"é":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}},"c":{"docs":{},"k":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"u":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"s":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"q":{"docs":{},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"'":{"docs":{},"u":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":5.001612903225807}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"hot-reload.html":{"ref":"hot-reload.html","tf":5.016528925619835}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"è":{"docs":{},"v":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},".":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"ê":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"l":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"l":{"docs":{},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.02040816326530612}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"é":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"l":{"docs":{},"v":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},"d":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.029069767441860465},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"plugins.html":{"ref":"plugins.html","tf":0.016194331983805668},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"api.html":{"ref":"api.html","tf":0.012903225806451613}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}},"o":{"docs":{},"u":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"é":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"api.html":{"ref":"api.html","tf":0.014516129032258065}}}},"v":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"o":{"docs":{},"i":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"hot-reload.html":{"ref":"hot-reload.html","tf":3.3512974051896203}}}}}}},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.008547008547008548},"api.html":{"ref":"api.html","tf":0.00967741935483871}},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002457002457002457}},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"o":{"docs":{},"v":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}},"é":{"docs":{},"d":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}},"n":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"y":{"docs":{},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"u":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"e":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"ç":{"docs":{},"o":{"docs":{},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.008097165991902834}}},"v":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"u":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"testing.html":{"ref":"testing.html","tf":0.009819967266775777}},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"structure.html":{"ref":"structure.html","tf":0.016666666666666666},"api.html":{"ref":"api.html","tf":0.006329113924050633}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"api.html":{"ref":"api.html","tf":0.006329113924050633}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"e":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"p":{"docs":{},"i":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006795016987542469},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"z":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"é":{"docs":{},"s":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"è":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"é":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"v":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"f":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"t":{"docs":{},"é":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"f":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"é":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"è":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"é":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"v":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}},"p":{"docs":{},"é":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"é":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"é":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"u":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"è":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":5.009756097560976},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.05}}}}}}},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.013559322033898305},"structure.html":{"ref":"structure.html","tf":0.016666666666666666},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"strict.html":{"ref":"strict.html","tf":0.03296703296703297},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.010460251046025104},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.015822784810126583}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.012658227848101266}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"getting-started.html":{"ref":"getting-started.html","tf":0.014634146341463415},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.008064516129032258}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"modules.html":{"ref":"modules.html","tf":0.003389830508474576}},"+":{"docs":{},"+":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.022727272727272728}}}}}}}}}}}},"a":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.010169491525423728}}},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}},"，":{"docs":{},"驱":{"docs":{},"动":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"；":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}},"例":{"docs":{},"如":{"docs":{},"从":{"docs":{},"一":{"docs":{},"个":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"渲":{"docs":{},"染":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"保":{"docs":{},"留":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}},"、":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"、":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"、":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"、":{"docs":{},"甚":{"docs":{},"至":{"docs":{},"是":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"子":{"docs":{},"模":{"docs":{},"块":{"docs":{},"—":{"docs":{},"—":{"docs":{},"从":{"docs":{},"上":{"docs":{},"至":{"docs":{},"下":{"docs":{},"进":{"docs":{},"行":{"docs":{},"同":{"docs":{},"样":{"docs":{},"方":{"docs":{},"式":{"docs":{},"的":{"docs":{},"分":{"docs":{},"割":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"用":{"docs":{},"于":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"渲":{"docs":{},"染":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"这":{"docs":{},"在":{"docs":{},"你":{"docs":{},"想":{"docs":{},"要":{"docs":{},"重":{"docs":{},"用":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"'":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"i":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"q":{"docs":{},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"g":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"strict.html":{"ref":"strict.html","tf":5.022058823529412},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"l":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},":":{"docs":{"strict.html":{"ref":"strict.html","tf":0.07894736842105263}}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"n":{"docs":{},"g":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.006329113924050633}},")":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0189873417721519}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0064516129032258064}}},"]":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.00949367088607595}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":3.353951890034364}},"e":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}}}}}}}}}}}}}},"e":{"docs":{},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.010101010101010102},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.02834008097165992},"strict.html":{"ref":"strict.html","tf":0.07894736842105263},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},"'":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.014634146341463415},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.004838709677419355}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.00708502024291498},"state.html":{"ref":"state.html","tf":0.0028328611898017}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714}},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"{":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.015151515151515152}},"，":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"我":{"docs":{},"们":{"docs":{},"想":{"docs":{},"要":{"docs":{},"更":{"docs":{},"明":{"docs":{},"确":{"docs":{},"地":{"docs":{},"追":{"docs":{},"踪":{"docs":{},"到":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"约":{"docs":{},"定":{"docs":{},"能":{"docs":{},"够":{"docs":{},"让":{"docs":{},"你":{"docs":{},"的":{"docs":{},"意":{"docs":{},"图":{"docs":{},"更":{"docs":{},"加":{"docs":{},"明":{"docs":{},"显":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"你":{"docs":{},"在":{"docs":{},"阅":{"docs":{},"读":{"docs":{},"代":{"docs":{},"码":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"能":{"docs":{},"更":{"docs":{},"容":{"docs":{},"易":{"docs":{},"地":{"docs":{},"解":{"docs":{},"读":{"docs":{},"应":{"docs":{},"用":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"改":{"docs":{},"变":{"docs":{},"。":{"docs":{},"此":{"docs":{},"外":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"也":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"有":{"docs":{},"机":{"docs":{},"会":{"docs":{},"去":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"些":{"docs":{},"能":{"docs":{},"记":{"docs":{},"录":{"docs":{},"每":{"docs":{},"次":{"docs":{},"状":{"docs":{},"态":{"docs":{},"改":{"docs":{},"变":{"docs":{},"，":{"docs":{},"保":{"docs":{},"存":{"docs":{},"状":{"docs":{},"态":{"docs":{},"快":{"docs":{},"照":{"docs":{},"的":{"docs":{},"调":{"docs":{},"试":{"docs":{},"工":{"docs":{},"具":{"docs":{},"。":{"docs":{},"有":{"docs":{},"了":{"docs":{},"它":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"甚":{"docs":{},"至":{"docs":{},"可":{"docs":{},"以":{"docs":{},"实":{"docs":{},"现":{"docs":{},"如":{"docs":{},"时":{"docs":{},"间":{"docs":{},"穿":{"docs":{},"梭":{"docs":{},"般":{"docs":{},"的":{"docs":{},"调":{"docs":{},"试":{"docs":{},"体":{"docs":{},"验":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"e":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"api.html":{"ref":"api.html","tf":0.006329113924050633}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"2":{"docs":{},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}},"docs":{}}}}}}}}}}}}}},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.013793103448275862}},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},":":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"{":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.0010121457489878543},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},"s":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"。":{"docs":{},"创":{"docs":{},"建":{"docs":{},"过":{"docs":{},"程":{"docs":{},"直":{"docs":{},"截":{"docs":{},"了":{"docs":{},"当":{"docs":{},"—":{"docs":{},"—":{"docs":{},"仅":{"docs":{},"需":{"docs":{},"要":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"同":{"docs":{},"步":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"（":{"docs":{},"仓":{"docs":{},"库":{"docs":{},"）":{"docs":{},"。":{"docs":{},"“":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"”":{"docs":{},"基":{"docs":{},"本":{"docs":{},"上":{"docs":{},"就":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"，":{"docs":{},"它":{"docs":{},"包":{"docs":{},"含":{"docs":{},"着":{"docs":{},"你":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"中":{"docs":{},"大":{"docs":{},"部":{"docs":{},"分":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"下":{"docs":{},"面":{"docs":{},"是":{"docs":{},"个":{"docs":{},"大":{"docs":{},"概":{"docs":{},"例":{"docs":{},"子":{"docs":{},"，":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}},"）":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"，":{"docs":{},"他":{"docs":{},"们":{"docs":{},"公":{"docs":{},"用":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"可":{"docs":{},"能":{"docs":{},"需":{"docs":{},"要":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"称":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"插":{"docs":{},"件":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"对":{"docs":{},"象":{"docs":{},"来":{"docs":{},"允":{"docs":{},"许":{"docs":{},"用":{"docs":{},"户":{"docs":{},"指":{"docs":{},"定":{"docs":{},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"称":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"大":{"docs":{},"概":{"docs":{},"长":{"docs":{},"这":{"docs":{},"样":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},"s":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}},"z":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"o":{"docs":{},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}},"m":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"modules.html":{"ref":"modules.html","tf":0.007478632478632479},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.012903225806451613}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"z":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"t":{"docs":{},"e":{"docs":{},"z":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"v":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},"i":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"a":{"docs":{"intro.html":{"ref":"intro.html","tf":0.02040816326530612}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}},"é":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"è":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"n":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"i":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}}},"e":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"state.html":{"ref":"state.html","tf":0.00141643059490085}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"）":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}},"l":{"docs":{},"f":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"o":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"r":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"u":{"docs":{},"r":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"i":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}}},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"i":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}},"e":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"n":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"u":{"docs":{},"p":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}},"u":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"p":{"docs":{},"e":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"u":{"docs":{},"l":{"docs":{},"d":{"docs":{},"!":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}},"p":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"y":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856},"api.html":{"ref":"api.html","tf":0.006072874493927126}},"b":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.010666666666666666},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"f":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"e":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}},"u":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.006142506142506142}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"é":{"docs":{"testing.html":{"ref":"testing.html","tf":0.006142506142506142}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.014150943396226415},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}},"?":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"n":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}}}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}},"s":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.005139500734214391},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"r":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}}},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"i":{"docs":{},"e":{"docs":{},"z":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"_":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"testing.html":{"ref":"testing.html","tf":0.007371007371007371},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},"r":{"docs":{},"e":{"docs":{},"z":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"!":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.00437636761487965}}}}},"è":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.004914004914004914},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"b":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"e":{"docs":{},"(":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"m":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.003036437246963563}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"z":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"s":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"'":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"è":{"docs":{},"g":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"é":{"docs":{},"v":{"docs":{},"a":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}},"é":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}},"é":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}},"s":{"docs":{},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"state.html":{"ref":"state.html","tf":0.00141643059490085},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.007371007371007371}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"m":{"docs":{},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.015151515151515152}}}}}}},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"r":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"i":{"docs":{},"n":{"docs":{},"é":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"x":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.023255813953488372}}}}},"l":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0028328611898017}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"api.html":{"ref":"api.html","tf":0.009109311740890687}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}},",":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}},".":{"docs":{},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"api.html":{"ref":"api.html","tf":0.00949367088607595}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251}}}}}},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"k":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"plugins.html":{"ref":"plugins.html","tf":0.013477088948787063},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"s":{"docs":{},"k":{"docs":{},"s":{"docs":{},")":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"r":{"docs":{},"d":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"e":{"docs":{},"m":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"n":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"g":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},"+":{"docs":{},"+":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},"e":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.022727272727272728}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"x":{"docs":{},"x":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}},"w":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"n":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}}},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"s":{"docs":{},")":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.010460251046025104}}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"c":{"docs":{},"k":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"!":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"e":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}},"é":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}},"ç":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}}},"e":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.01179245283018868},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"!":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},")":{"docs":{},"を":{"docs":{},"使":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"つ":{"docs":{},"ま":{"docs":{},"り":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"単":{"docs":{},"一":{"docs":{},"な":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"レ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"が":{"docs":{},"全":{"docs":{},"て":{"docs":{},"含":{"docs":{},"ま":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"お":{"docs":{},"り":{"docs":{},"、":{"docs":{},"\"":{"docs":{},"信":{"docs":{},"頼":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"の":{"docs":{},"情":{"docs":{},"報":{"docs":{},"源":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.0087527352297593},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"e":{"docs":{},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}},"c":{"docs":{},"k":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"i":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"\"":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},")":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}},"\"":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"api.html":{"ref":"api.html","tf":0.00949367088607595},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"：":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}},"，":{"docs":{},"它":{"docs":{},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"模":{"docs":{},"块":{"docs":{},"里":{"docs":{},"分":{"docs":{},"发":{"docs":{},"根":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"提":{"docs":{},"交":{"docs":{},"根":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}},"}":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"o":{"docs":{},"u":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"i":{"docs":{},"e":{"docs":{},"z":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"è":{"docs":{},"m":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"p":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}},"è":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}},"w":{"docs":{},"o":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"forms.html":{"ref":"forms.html","tf":0.014492753623188406}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"s":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}},"d":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}},"s":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"g":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0056657223796034},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0056657223796034},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}},"r":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}},"é":{"docs":{},"l":{"docs":{},"é":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}}}}}}}}}}}}},"â":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"u":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.047058823529411764},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.014634146341463415},"core-concepts.html":{"ref":"core-concepts.html","tf":0.05},"state.html":{"ref":"state.html","tf":0.02358490566037736},"getters.html":{"ref":"getters.html","tf":0.01568627450980392},"mutations.html":{"ref":"mutations.html","tf":0.0196078431372549},"actions.html":{"ref":"actions.html","tf":0.006564551422319475},"modules.html":{"ref":"modules.html","tf":0.009615384615384616},"plugins.html":{"ref":"plugins.html","tf":0.018867924528301886},"forms.html":{"ref":"forms.html","tf":0.028985507246376812},"testing.html":{"ref":"testing.html","tf":0.011456628477905073},"hot-reload.html":{"ref":"hot-reload.html","tf":0.024793388429752067},"api.html":{"ref":"api.html","tf":0.01129032258064516}},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.028312570781426953},"installation.html":{"ref":"installation.html","tf":0.029850746268656716},"intro.html":{"ref":"intro.html","tf":0.03376205787781351},"getting-started.html":{"ref":"getting-started.html","tf":0.034666666666666665},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.024079320113314446},"getters.html":{"ref":"getters.html","tf":0.01912568306010929},"actions.html":{"ref":"actions.html","tf":0.024320457796852647},"modules.html":{"ref":"modules.html","tf":0.018355359765051395},"structure.html":{"ref":"structure.html","tf":0.015463917525773196},"plugins.html":{"ref":"plugins.html","tf":0.023853211009174313},"strict.html":{"ref":"strict.html","tf":0.022058823529411766},"forms.html":{"ref":"forms.html","tf":0.04326923076923077},"testing.html":{"ref":"testing.html","tf":0.012285012285012284},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.025303643724696356}},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"core-concepts.html":{"ref":"core-concepts.html","tf":0.05}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.007082152974504249},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}},"p":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.022727272727272728}}}}}}}}}}}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"i":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.0084985835694051},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.007927519818799546},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.005873715124816446},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.007371007371007371},"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"é":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}},"e":{"docs":{},"z":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},"r":{"docs":{},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}}}}}},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.022727272727272728}},"e":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"s":{"docs":{},"a":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085}},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"e":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"e":{"docs":{},"u":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"u":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},"e":{"docs":{},"w":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"，":{"docs":{},"以":{"docs":{},"声":{"docs":{},"明":{"docs":{},"方":{"docs":{},"式":{"docs":{},"将":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}},"u":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03278688524590164},"intro.html":{"ref":"intro.html","tf":0.02040816326530612},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.010101010101010102},"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"@":{"2":{"docs":{},".":{"5":{"docs":{},"+":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}},",":{"docs":{"./":{"ref":"./","tf":0.020833333333333332}}}}},"docs":{}}},"docs":{},">":{"docs":{},"=":{"2":{"docs":{},".":{"5":{"docs":{},"，":{"docs":{},"反":{"docs":{},"之":{"docs":{},"亦":{"docs":{},"然":{"docs":{},"。":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}}}}},",":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}},"docs":{}}},"docs":{}}}},"x":{"docs":{"./":{"ref":"./","tf":0.1111111111111111},"installation.html":{"ref":"installation.html","tf":0.11475409836065574},"intro.html":{"ref":"intro.html","tf":5.040816326530612},"getting-started.html":{"ref":"getting-started.html","tf":5.095238095238095},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.03535353535353535},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.017857142857142856},"modules.html":{"ref":"modules.html","tf":0.00847457627118644},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"forms.html":{"ref":"forms.html","tf":0.022727272727272728},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":0.00949367088607595}},"?":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":3.3374741200828155}}},"@":{"3":{"docs":{},".":{"0":{"docs":{},"+":{"docs":{"./":{"ref":"./","tf":0.020833333333333332}}}},"docs":{}}},"docs":{},">":{"docs":{},"=":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.012658227848101266},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"plugins.html":{"ref":"plugins.html","tf":0.016194331983805668},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},"：":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}},"虽":{"docs":{},"然":{"docs":{},"将":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"放":{"docs":{},"到":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"state.html":{"ref":"state.html","tf":0.005050505050505051}},")":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"）":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"j":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}},"'":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"(":{"docs":{},"{":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.005050505050505051}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"?":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"，":{"docs":{},"然":{"docs":{},"后":{"docs":{},"侦":{"docs":{},"听":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}}}},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"s":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}},"m":{"docs":{},".":{"docs":{},"$":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"o":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.006142506142506142}},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04477611940298507},"intro.html":{"ref":"intro.html","tf":0.01929260450160772},"getting-started.html":{"ref":"getting-started.html","tf":0.021333333333333333},"state.html":{"ref":"state.html","tf":0.0056657223796034},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.009060022650056626},"actions.html":{"ref":"actions.html","tf":0.008583690987124463},"modules.html":{"ref":"modules.html","tf":0.012481644640234948},"structure.html":{"ref":"structure.html","tf":0.020618556701030927},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"testing.html":{"ref":"testing.html","tf":0.006142506142506142},"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}},"i":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"e":{"docs":{},"z":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"l":{"docs":{},"à":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"t":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}},"y":{"docs":{},"e":{"docs":{},"z":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}},"a":{"docs":{},"g":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"l":{"docs":{},"é":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"é":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}}}}}},"f":{"docs":{},"i":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}},"'":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}},"x":{"docs":{},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.006276150627615063}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"'":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.023255813953488372}}}}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}},"/":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"'":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"]":{"docs":{},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}},"s":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.005084745762711864}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.010460251046025104}}}}}}}},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},";":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"_":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"api.html":{"ref":"api.html","tf":0.0012391573729863693},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"/":{"docs":{"intro.html":{"ref":"intro.html","tf":0.030612244897959183},"getting-started.html":{"ref":"getting-started.html","tf":0.031746031746031744},"state.html":{"ref":"state.html","tf":0.050505050505050504},"getters.html":{"ref":"getters.html","tf":0.05232558139534884},"mutations.html":{"ref":"mutations.html","tf":0.05},"actions.html":{"ref":"actions.html","tf":0.05517241379310345},"modules.html":{"ref":"modules.html","tf":0.061016949152542375},"plugins.html":{"ref":"plugins.html","tf":0.06072874493927125},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"forms.html":{"ref":"forms.html","tf":0.022727272727272728},"testing.html":{"ref":"testing.html","tf":0.04811715481171548},"hot-reload.html":{"ref":"hot-reload.html","tf":0.05434782608695652},"api.html":{"ref":"api.html","tf":0.0379746835443038}},"/":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"*":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}},"\\":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"$":{"docs":{},"/":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":3.387387387387387}},"n":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"i":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"é":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"e":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"e":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"s":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"a":{"docs":{},"u":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}},"i":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"forms.html":{"ref":"forms.html","tf":0.014492753623188406},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"n":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"è":{"docs":{},"q":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00546448087431694}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"forms.html":{"ref":"forms.html","tf":0.009615384615384616}}}}}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"t":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"n":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"r":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.004909983633387889}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}},"y":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}},"，":{"docs":{},"让":{"docs":{},"构":{"docs":{},"建":{"docs":{},"工":{"docs":{},"具":{"docs":{},"帮":{"docs":{},"我":{"docs":{},"们":{"docs":{},"处":{"docs":{},"理":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006779661016949152}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}},"é":{"docs":{},"n":{"docs":{},"é":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"q":{"docs":{},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.10416666666666667},"installation.html":{"ref":"installation.html","tf":0.06716417910447761},"intro.html":{"ref":"intro.html","tf":0.0819935691318328},"getting-started.html":{"ref":"getting-started.html","tf":0.06133333333333333},"core-concepts.html":{"ref":"core-concepts.html","tf":3.441441441441441},"state.html":{"ref":"state.html","tf":0.05524079320113314},"getters.html":{"ref":"getters.html","tf":0.02459016393442623},"mutations.html":{"ref":"mutations.html","tf":0.06681766704416761},"actions.html":{"ref":"actions.html","tf":0.032904148783977114},"modules.html":{"ref":"modules.html","tf":0.04185022026431718},"structure.html":{"ref":"structure.html","tf":0.10309278350515463},"plugins.html":{"ref":"plugins.html","tf":0.05871559633027523},"strict.html":{"ref":"strict.html","tf":0.07352941176470588},"forms.html":{"ref":"forms.html","tf":3.376602564102564},"testing.html":{"ref":"testing.html","tf":0.028255528255528257},"hot-reload.html":{"ref":"hot-reload.html","tf":0.029940119760479042},"api.html":{"ref":"api.html","tf":3.403171390013495}},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"s":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"此":{"docs":{},"插":{"docs":{},"件":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}}},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}}}}}},"z":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}},"n":{"docs":{},"i":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"z":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"a":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}}},"i":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"e":{"docs":{},"p":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.05},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"l":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.0064516129032258064}},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}},"u":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.03870967741935484}},"s":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"è":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}}}},"r":{"docs":{},"i":{"docs":{},"è":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"）":{"docs":{},"が":{"docs":{},"よ":{"docs":{},"く":{"docs":{},"使":{"docs":{},"わ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"（":{"docs":{},"特":{"docs":{},"に":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"s":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"o":{"docs":{},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"u":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344}},"i":{"docs":{},"è":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"y":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.00437636761487965}}}},"é":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"i":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"s":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.010940919037199124},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"api.html":{"ref":"api.html","tf":0.008064516129032258}},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.023255813953488372}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.011627906976744186}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"(":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"w":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}},"c":{"docs":{},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":3.334345479082321}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}},"m":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}},"a":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.014469453376205787},"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.019830028328611898},"getters.html":{"ref":"getters.html","tf":0.01366120218579235},"mutations.html":{"ref":"mutations.html","tf":0.010192525481313703},"actions.html":{"ref":"actions.html","tf":0.010014306151645207},"modules.html":{"ref":"modules.html","tf":0.011747430249632892},"structure.html":{"ref":"structure.html","tf":0.015463917525773196},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.009828009828009828},"api.html":{"ref":"api.html","tf":0.016194331983805668}}},"t":{"docs":{},"a":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"state.html":{"ref":"state.html","tf":0.009915014164305949},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"modules.html":{"ref":"modules.html","tf":0.012481644640234948},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"hot-reload.html":{"ref":"hot-reload.html","tf":0.011976047904191617},"api.html":{"ref":"api.html","tf":0.015182186234817813}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},"q":{"docs":{},"u":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}},"m":{"docs":{},"b":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}},"r":{"docs":{},"e":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0022026431718061676}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}}}}}},"'":{"docs":{},"u":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.003036437246963563}},"e":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.0028328611898017},"structure.html":{"ref":"structure.html","tf":3.3384879725085908},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}}}},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"é":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}},"c":{"docs":{},"r":{"docs":{},"é":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"é":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"state.html":{"ref":"state.html","tf":0.009915014164305949},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"v":{"docs":{},"è":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}},"l":{"docs":{},"é":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.004291845493562232},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"è":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"i":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}},"i":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"ê":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"p":{"docs":{},"é":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}},"é":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}}},"u":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"a":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"é":{"docs":{"actions.html":{"ref":"actions.html","tf":0.004291845493562232}},"e":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.004048582995951417}},"s":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},"z":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"e":{"docs":{},"z":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"i":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.024291497975708502}},"s":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}},"b":{"docs":{},"o":{"docs":{},"g":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},"e":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"u":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"s":{"docs":{},"i":{"docs":{},"r":{"docs":{},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"é":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}}}},"j":{"docs":{},"à":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"z":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"’":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}}}},"è":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}},"l":{"docs":{},"i":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.010460251046025104}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"o":{"docs":{},"n":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.005341880341880342},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0020242914979757085}},"é":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.006276150627615063}},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"0":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"docs":{}}}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"[":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"1":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}},"[":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"]":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"，":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"诸":{"docs":{},"如":{"docs":{},"零":{"docs":{},"配":{"docs":{},"置":{"docs":{},"的":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}},"r":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"i":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"e":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"ê":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"structure.html":{"ref":"structure.html","tf":0.01694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"testing.html":{"ref":"testing.html","tf":0.004909983633387889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"e":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}},"を":{"docs":{},"チ":{"docs":{},"ェ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ア":{"docs":{},"ウ":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"l":{"docs":{},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856}},"e":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},"a":{"docs":{},"c":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"u":{"docs":{},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"l":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00964630225080386},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.007082152974504249},"getters.html":{"ref":"getters.html","tf":0.01366120218579235},"mutations.html":{"ref":"mutations.html","tf":0.007927519818799546},"actions.html":{"ref":"actions.html","tf":0.010014306151645207},"modules.html":{"ref":"modules.html","tf":0.008076358296622614},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"strict.html":{"ref":"strict.html","tf":0.029411764705882353},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856},"hot-reload.html":{"ref":"hot-reload.html","tf":0.017964071856287425},"api.html":{"ref":"api.html","tf":0.011133603238866396}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017}},"s":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"l":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"strict.html":{"ref":"strict.html","tf":0.02197802197802198}}}}},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098}}}},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"y":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"é":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}}}},"o":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"v":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"o":{"docs":{},"y":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"modules.html":{"ref":"modules.html","tf":0.003671071953010279},"api.html":{"ref":"api.html","tf":0.004048582995951417}},"é":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"e":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}}}}}}},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"i":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"é":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"，":{"docs":{},"你":{"docs":{},"得":{"docs":{},"抓":{"docs":{},"紧":{"docs":{},"了":{"docs":{},"！":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.05},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"e":{"docs":{},"l":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}},"a":{"docs":{},"y":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.008076358296622614},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.008038585209003215},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.009915014164305949},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.01245753114382786},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"modules.html":{"ref":"modules.html","tf":0.005873715124816446},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}},"c":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},")":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}},"g":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.014925373134328358},"intro.html":{"ref":"intro.html","tf":0.027331189710610933},"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"state.html":{"ref":"state.html","tf":0.015580736543909348},"getters.html":{"ref":"getters.html","tf":0.00819672131147541},"mutations.html":{"ref":"mutations.html","tf":0.007927519818799546},"actions.html":{"ref":"actions.html","tf":0.017167381974248927},"modules.html":{"ref":"modules.html","tf":0.016152716593245228},"structure.html":{"ref":"structure.html","tf":0.015463917525773196},"plugins.html":{"ref":"plugins.html","tf":0.007339449541284404},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.0085995085995086},"hot-reload.html":{"ref":"hot-reload.html","tf":0.023952095808383235},"api.html":{"ref":"api.html","tf":0.013157894736842105}}}},"l":{"docs":{},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.01607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.021333333333333333},"state.html":{"ref":"state.html","tf":0.019830028328611898},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.01812004530011325},"actions.html":{"ref":"actions.html","tf":0.01430615164520744},"modules.html":{"ref":"modules.html","tf":0.00881057268722467},"structure.html":{"ref":"structure.html","tf":0.015463917525773196},"plugins.html":{"ref":"plugins.html","tf":0.014678899082568808},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.0085995085995086},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.015182186234817813}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.023529411764705882}}}},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"r":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"n":{"docs":{},"c":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}},"é":{"docs":{},"e":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.006142506142506142}},"a":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}},"s":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"i":{"docs":{},"r":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"s":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}},"k":{"docs":{},"e":{"docs":{},")":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"e":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.014925373134328358}}},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},"r":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"t":{"docs":{},"t":{"docs":{},"é":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"g":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"é":{"docs":{},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.022388059701492536},"intro.html":{"ref":"intro.html","tf":0.022508038585209004},"getting-started.html":{"ref":"getting-started.html","tf":0.02666666666666667},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.03541076487252125},"getters.html":{"ref":"getters.html","tf":0.03825136612021858},"mutations.html":{"ref":"mutations.html","tf":0.03284258210645526},"actions.html":{"ref":"actions.html","tf":0.04005722460658083},"modules.html":{"ref":"modules.html","tf":0.024229074889867842},"structure.html":{"ref":"structure.html","tf":0.015463917525773196},"plugins.html":{"ref":"plugins.html","tf":0.031192660550458717},"strict.html":{"ref":"strict.html","tf":0.051470588235294115},"forms.html":{"ref":"forms.html","tf":0.02403846153846154},"testing.html":{"ref":"testing.html","tf":0.03562653562653563},"hot-reload.html":{"ref":"hot-reload.html","tf":0.05389221556886228},"api.html":{"ref":"api.html","tf":0.04149797570850203}},"a":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"v":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"r":{"docs":{},"n":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.05}}}}},"t":{"docs":{},"'":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"core-concepts.html":{"ref":"core-concepts.html","tf":0.05},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"structure.html":{"ref":"structure.html","tf":0.016666666666666666},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}},"s":{"docs":{},"s":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},"u":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}},"g":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"é":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}}}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}},"c":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}},"q":{"docs":{},"u":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.006072874493927126}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"8":{"0":{"8":{"0":{"docs":{},"/":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}},"i":{"docs":{},"s":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}},"s":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},"u":{"docs":{},"x":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}},"o":{"docs":{},"k":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}},"s":{"docs":{},"e":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.012552301255230125}},"!":{"docs":{},".":{"docs":{},"/":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"'":{"docs":{},"i":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"u":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}},"i":{"docs":{},"n":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":3.334345479082321}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"r":{"docs":{},"b":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"y":{"docs":{},"s":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"s":{"docs":{},"m":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}},"n":{"docs":{},"c":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"t":{"docs":{},"é":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0014684287812041115}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}},"d":{"docs":{},"é":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}},"e":{"docs":{},"z":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}}}},"n":{"docs":{},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"n":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"é":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.014469453376205787},"getting-started.html":{"ref":"getting-started.html","tf":0.018666666666666668},"state.html":{"ref":"state.html","tf":0.0169971671388102},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.006795016987542469},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.010279001468428781},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"plugins.html":{"ref":"plugins.html","tf":0.011009174311926606},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"api.html":{"ref":"api.html","tf":0.01720647773279352}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}},"v":{"docs":{},"è":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.003036437246963563}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"é":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00424929178470255},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"é":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0028328611898017},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}}}},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.002457002457002457}}}}},"u":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"i":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"à":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"é":{"docs":{},"g":{"docs":{},"è":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"y":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"forms.html":{"ref":"forms.html","tf":0.014492753623188406}},"\"":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}},"i":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"e":{"docs":{},"r":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},"(":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"i":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"l":{"docs":{},"d":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}},"d":{"docs":{},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"t":{"docs":{},"h":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"e":{"docs":{},"'":{"docs":{},"d":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"testing.html":{"ref":"testing.html","tf":0.014644351464435146},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"'":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"о":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"在":{"docs":{},"真":{"docs":{},"实":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"环":{"docs":{},"境":{"docs":{},"中":{"docs":{},"进":{"docs":{},"行":{"docs":{},"测":{"docs":{},"试":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}},"l":{"docs":{},"l":{"docs":{},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"y":{"docs":{},"?":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}},"y":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03278688524590164}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}}}}},"'":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"’":{"docs":{},"l":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}},"\"":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"\"":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.005050505050505051}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"\"":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}},"i":{"docs":{},"n":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}}}}}},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"и":{"docs":{},"з":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"и":{"docs":{},"к":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"н":{"docs":{},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},"\"":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}},"м":{"docs":{},"а":{"docs":{},"ш":{"docs":{},"и":{"docs":{},"н":{"docs":{},"у":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"ы":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}}}}}},"п":{"docs":{},"т":{"docs":{},"и":{"docs":{},"м":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},"\"":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}}}}},"п":{"docs":{},"а":{"docs":{},"т":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{},"\"":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}}}},"о":{"docs":{},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"\"":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}}},"е":{"docs":{},"д":{"docs":{},"и":{"docs":{},"н":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"в":{"docs":{},"ы":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}}},"д":{"docs":{},"о":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"к":{"docs":{},"о":{"docs":{},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"с":{"docs":{},"н":{"docs":{},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"н":{"docs":{},"а":{"docs":{},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{},"\"":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"ビ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"\"":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}},"状":{"docs":{},"態":{"docs":{},"管":{"docs":{},"理":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"\"":{"docs":{},"と":{"docs":{},"は":{"docs":{},"な":{"docs":{},"ん":{"docs":{},"で":{"docs":{},"す":{"docs":{},"か":{"docs":{},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"入":{"docs":{},"\"":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"\"":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"が":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}},"(":{"2":{"docs":{},".":{"3":{"docs":{},".":{"0":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"docs":{}}},"docs":{}}},"docs":{},")":{"docs":{"intro.html":{"ref":"intro.html","tf":0.02040816326530612},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.010169491525423728},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.010460251046025104},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},")":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"g":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"strict.html":{"ref":"strict.html","tf":2.508130081300813}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}},"s":{"docs":{},"o":{"docs":{},"t":{"docs":{},")":{"docs":{},"”":{"docs":{},"而":{"docs":{},"存":{"docs":{},"在":{"docs":{},"。":{"docs":{},"这":{"docs":{},"也":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"，":{"docs":{},"每":{"docs":{},"个":{"docs":{},"应":{"docs":{},"用":{"docs":{},"将":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.010101010101010102}}}}}}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},".":{"docs":{},"g":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"x":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}},"t":{"docs":{},"x":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"b":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"'":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.02413793103448276},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"é":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"é":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},")":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"u":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}},"o":{"docs":{},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"v":{"docs":{},"é":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"s":{"docs":{},")":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"è":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},")":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"是":{"docs":{},"我":{"docs":{},"们":{"docs":{},"实":{"docs":{},"际":{"docs":{},"进":{"docs":{},"行":{"docs":{},"状":{"docs":{},"态":{"docs":{},"更":{"docs":{},"改":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"它":{"docs":{},"会":{"docs":{},"接":{"docs":{},"受":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"例":{"docs":{},"如":{"docs":{},"当":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"«":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"n":{"docs":{},"é":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"я":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{},"с":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"в":{"docs":{},"а":{"docs":{},"р":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"о":{"docs":{},"д":{"docs":{},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"к":{"docs":{},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"д":{"docs":{},"л":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"о":{"docs":{},"с":{"docs":{},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}},"т":{"docs":{},"р":{"docs":{},"е":{"docs":{},"б":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"в":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"х":{"docs":{},"о":{"docs":{},"т":{"docs":{},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"、":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"不":{"docs":{},"自":{"docs":{},"然":{"docs":{},"な":{"docs":{},"例":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"実":{"docs":{},"際":{"docs":{},"に":{"docs":{},"は":{"docs":{},"、":{"docs":{},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"複":{"docs":{},"雑":{"docs":{},"な":{"docs":{},"タ":{"docs":{},"ス":{"docs":{},"ク":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"+":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.005050505050505051},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.006276150627615063}},"=":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714}}}},"`":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"state.html":{"ref":"state.html","tf":0.010101010101010102}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"`":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"，":{"docs":{},"只":{"docs":{},"存":{"docs":{},"在":{"docs":{},"于":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"，":{"docs":{},"只":{"docs":{},"存":{"docs":{},"在":{"docs":{},"于":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"若":{"docs":{},"在":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"则":{"docs":{},"为":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}}}}}}},"`":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"`":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{},")":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.006896551724137931}}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"{":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}},"{":{"docs":{"state.html":{"ref":"state.html","tf":0.010101010101010102}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"b":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},"s":{"docs":{},"`":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},".":{"docs":{},".":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"`":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00273224043715847}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"`":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},")":{"docs":{},"`":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}}}}}}}}},"x":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}}}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"u":{"docs":{},"x":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"e":{"docs":{},"r":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}},"z":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"mutations.html":{"ref":"mutations.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.00437636761487965}}}}},"e":{"docs":{},"y":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{"testing.html":{"ref":"testing.html","tf":0.008368200836820083}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"i":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"e":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}}},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"getters.html":{"ref":"getters.html","tf":0.00546448087431694},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"plugins.html":{"ref":"plugins.html","tf":0.003669724770642202},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.00708502024291498}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"i":{"docs":{},"l":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.014705882352941176}}}}}},"b":{"docs":{},"j":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.01650943396226415},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.013725490196078431},"actions.html":{"ref":"actions.html","tf":0.0087527352297593},"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"api.html":{"ref":"api.html","tf":0.028481012658227847}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"getters.html":{"ref":"getters.html","tf":0.00784313725490196},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.02531645569620253}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.012658227848101266}}}}}},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.0056657223796034},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"api.html":{"ref":"api.html","tf":0.004048582995951417}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"e":{"docs":{},"。":{"docs":{},"在":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"中":{"docs":{},"，":{"docs":{},"由":{"docs":{},"于":{"docs":{},"这":{"docs":{},"个":{"docs":{},"修":{"docs":{},"改":{"docs":{},"不":{"docs":{},"是":{"docs":{},"在":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}}}}},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.007075471698113208},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"o":{"docs":{},"r":{"docs":{},"）":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}},"s":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0189873417721519}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"api.html":{"ref":"api.html","tf":0.005060728744939271}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"é":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488}},"e":{"docs":{},"u":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"ù":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"structure.html":{"ref":"structure.html","tf":0.005154639175257732}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.00964630225080386},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"modules.html":{"ref":"modules.html","tf":0.0022026431718061676},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"forms.html":{"ref":"forms.html","tf":0.009615384615384616},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.012145748987854251}},"c":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629}}}}}},"t":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}},"o":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"e":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":1.677920685959271},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"state.html":{"ref":"state.html","tf":0.009915014164305949},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.006795016987542469},"actions.html":{"ref":"actions.html","tf":0.010014306151645207},"modules.html":{"ref":"modules.html","tf":0.005139500734214391},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.006142506142506142},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"r":{"docs":{},"i":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},"q":{"docs":{},"u":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}}}},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}}}}},"'":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":1.6698821007502678}}}},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"é":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}},"u":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}},"é":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.004405286343612335},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"api.html":{"ref":"api.html","tf":0.0020242914979757085}}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}}},"{":{"docs":{"intro.html":{"ref":"intro.html","tf":0.04081632653061224},"getting-started.html":{"ref":"getting-started.html","tf":0.047619047619047616},"state.html":{"ref":"state.html","tf":0.06060606060606061},"getters.html":{"ref":"getters.html","tf":0.09883720930232558},"mutations.html":{"ref":"mutations.html","tf":0.08571428571428572},"actions.html":{"ref":"actions.html","tf":0.09310344827586207},"modules.html":{"ref":"modules.html","tf":0.11694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.048582995951417005},"forms.html":{"ref":"forms.html","tf":0.10227272727272728},"testing.html":{"ref":"testing.html","tf":0.09623430962343096},"hot-reload.html":{"ref":"hot-reload.html","tf":0.05434782608695652},"api.html":{"ref":"api.html","tf":0.02531645569620253}},"{":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}},"}":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"}":{"docs":{"intro.html":{"ref":"intro.html","tf":0.030612244897959183},"getting-started.html":{"ref":"getting-started.html","tf":0.031746031746031744},"state.html":{"ref":"state.html","tf":0.050505050505050504},"getters.html":{"ref":"getters.html","tf":0.0872093023255814},"mutations.html":{"ref":"mutations.html","tf":0.060714285714285714},"actions.html":{"ref":"actions.html","tf":0.06206896551724138},"modules.html":{"ref":"modules.html","tf":0.0711864406779661},"plugins.html":{"ref":"plugins.html","tf":0.020242914979757085},"forms.html":{"ref":"forms.html","tf":0.07954545454545454},"testing.html":{"ref":"testing.html","tf":0.06276150627615062},"hot-reload.html":{"ref":"hot-reload.html","tf":0.043478260869565216},"api.html":{"ref":"api.html","tf":0.015822784810126583}},")":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"mutations.html":{"ref":"mutations.html","tf":0.02857142857142857},"actions.html":{"ref":"actions.html","tf":0.04482758620689655},"modules.html":{"ref":"modules.html","tf":0.01864406779661017},"plugins.html":{"ref":"plugins.html","tf":0.03643724696356275},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.027196652719665274},"hot-reload.html":{"ref":"hot-reload.html","tf":0.03260869565217391},"api.html":{"ref":"api.html","tf":0.00949367088607595}},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}},")":{"docs":{},"で":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"実":{"docs":{},"現":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.010101010101010102},"getters.html":{"ref":"getters.html","tf":0.011627906976744186},"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"actions.html":{"ref":"actions.html","tf":0.020689655172413793},"modules.html":{"ref":"modules.html","tf":0.03559322033898305},"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251},"forms.html":{"ref":"forms.html","tf":0.022727272727272728},"testing.html":{"ref":"testing.html","tf":0.014644351464435146},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},"}":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}},"`":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.010101010101010102}}}}},"]":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"=":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"actions.html":{"ref":"actions.html","tf":0.006896551724137931},"modules.html":{"ref":"modules.html","tf":0.01864406779661017},"plugins.html":{"ref":"plugins.html","tf":0.044534412955465584},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.03556485355648536},"hot-reload.html":{"ref":"hot-reload.html","tf":0.043478260869565216},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},">":{"docs":{"state.html":{"ref":"state.html","tf":0.010101010101010102},"getters.html":{"ref":"getters.html","tf":0.040697674418604654},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.02413793103448276},"modules.html":{"ref":"modules.html","tf":0.011864406779661017},"plugins.html":{"ref":"plugins.html","tf":0.02834008097165992},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.027196652719665274},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.006329113924050633}}},"=":{"docs":{},"=":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}}},">":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"getters.html":{"ref":"getters.html","tf":0.01744186046511628},"modules.html":{"ref":"modules.html","tf":0.025423728813559324}},"=":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"*":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"/":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.015151515151515152},"getters.html":{"ref":"getters.html","tf":0.023255813953488372},"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"actions.html":{"ref":"actions.html","tf":0.010344827586206896},"modules.html":{"ref":"modules.html","tf":0.03559322033898305},"structure.html":{"ref":"structure.html","tf":0.03389830508474576},"plugins.html":{"ref":"plugins.html","tf":0.008097165991902834},"strict.html":{"ref":"strict.html","tf":0.05263157894736842},"forms.html":{"ref":"forms.html","tf":0.022727272727272728},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"modules.html":{"ref":"modules.html","tf":0.003389830508474576},"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}},"'":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}},"{":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}},"'":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}},")":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"）":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}},"]":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},")":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"modules.html":{"ref":"modules.html","tf":0.005084745762711864},"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"[":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"testing.html":{"ref":"testing.html","tf":0.006276150627615063}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"_":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"]":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},"]":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}}}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},"%":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}},"|":{"docs":{"api.html":{"ref":"api.html","tf":0.028481012658227847}},"|":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}},"#":{"docs":{"structure.html":{"ref":"structure.html","tf":0.1016949152542373}}},"│":{"docs":{"structure.html":{"ref":"structure.html","tf":0.05084745762711865}}},"└":{"docs":{},"─":{"docs":{},"─":{"docs":{"structure.html":{"ref":"structure.html","tf":0.0847457627118644}}}}},"├":{"docs":{},"─":{"docs":{},"─":{"docs":{"structure.html":{"ref":"structure.html","tf":0.15254237288135594}}}}},"!":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}},"=":{"docs":{},"=":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.012145748987854251},"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"./":{"ref":"./","tf":0.020833333333333332},"installation.html":{"ref":"installation.html","tf":0.007462686567164179},"intro.html":{"ref":"intro.html","tf":0.00964630225080386},"getting-started.html":{"ref":"getting-started.html","tf":0.008},"state.html":{"ref":"state.html","tf":0.007082152974504249},"getters.html":{"ref":"getters.html","tf":0.02185792349726776},"mutations.html":{"ref":"mutations.html","tf":0.01925254813137033},"actions.html":{"ref":"actions.html","tf":0.020028612303290415},"modules.html":{"ref":"modules.html","tf":0.008076358296622614},"structure.html":{"ref":"structure.html","tf":0.010309278350515464},"strict.html":{"ref":"strict.html","tf":0.014705882352941176},"forms.html":{"ref":"forms.html","tf":0.019230769230769232},"testing.html":{"ref":"testing.html","tf":0.007371007371007371},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.015182186234817813}}},"?":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":1.673097534833869},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564},"actions.html":{"ref":"actions.html","tf":0.005722460658082976}}},"_":{"docs":{},".":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"strict.html":{"ref":"strict.html","tf":10.029411764705882}}}}}},"依":{"docs":{},"赖":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}},"的":{"docs":{},"模":{"docs":{},"块":{"docs":{},"工":{"docs":{},"厂":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"，":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"安":{"docs":{},"装":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"installation.html":{"ref":"installation.html","tf":10.015873015873016},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"开":{"docs":{},"始":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"getting-started.html":{"ref":"getting-started.html","tf":10.011764705882353}}},"发":{"docs":{},"环":{"docs":{},"境":{"docs":{},"与":{"docs":{},"发":{"docs":{},"布":{"docs":{},"环":{"docs":{},"境":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}},"启":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"，":{"docs":{},"仅":{"docs":{},"需":{"docs":{},"在":{"docs":{},"创":{"docs":{},"建":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}},"插":{"docs":{},"件":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"plugins.html":{"ref":"plugins.html","tf":10.00749063670412}},"函":{"docs":{},"数":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"在":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"就":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"动":{"docs":{},"态":{"docs":{},"注":{"docs":{},"册":{"docs":{},"模":{"docs":{},"块":{"docs":{},"将":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"，":{"docs":{},"它":{"docs":{},"接":{"docs":{},"收":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"会":{"docs":{},"生":{"docs":{},"成":{"docs":{},"状":{"docs":{},"态":{"docs":{},"快":{"docs":{},"照":{"docs":{},"，":{"docs":{},"所":{"docs":{},"以":{"docs":{},"仅":{"docs":{},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"环":{"docs":{},"境":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}},"文":{"docs":{},"档":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"api.html":{"ref":"api.html","tf":5}}},"件":{"docs":{},"太":{"docs":{},"大":{"docs":{},"，":{"docs":{},"只":{"docs":{},"需":{"docs":{},"将":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"字":{"docs":{},"列":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"、":{"docs":{},"`":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}},"是":{"docs":{},"什":{"docs":{},"么":{"docs":{},"？":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"intro.html":{"ref":"intro.html","tf":5.010309278350515}}}}},"一":{"docs":{},"个":{"docs":{},"专":{"docs":{},"为":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}},"专":{"docs":{},"门":{"docs":{},"为":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},"解":{"docs":{},"决":{"docs":{},"办":{"docs":{},"法":{"docs":{},"也":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"—":{"docs":{},"—":{"docs":{},"使":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"模":{"docs":{},"块":{"docs":{},"状":{"docs":{},"态":{"docs":{},"（":{"docs":{},"仅":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"在":{"docs":{},"全":{"docs":{},"局":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{},"—":{"docs":{},"—":{"docs":{},"这":{"docs":{},"样":{"docs":{},"使":{"docs":{},"得":{"docs":{},"多":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"能":{"docs":{},"够":{"docs":{},"对":{"docs":{},"同":{"docs":{},"一":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}},"更":{"docs":{},"改":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"方":{"docs":{},"法":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"这":{"docs":{},"个":{"docs":{},"过":{"docs":{},"程":{"docs":{},"是":{"docs":{},"同":{"docs":{},"步":{"docs":{},"的":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}},"个":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"在":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"中":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"属":{"docs":{},"于":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}},"更":{"docs":{},"新":{"docs":{},"记":{"docs":{},"录":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}},"改":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"核":{"docs":{},"心":{"docs":{},"概":{"docs":{},"念":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":10.076923076923077}}}}}},"注":{"docs":{},"意":{"docs":{},"：":{"docs":{},"对":{"docs":{},"于":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}},"我":{"docs":{},"们":{"docs":{},"正":{"docs":{},"在":{"docs":{},"进":{"docs":{},"行":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"的":{"docs":{},"异":{"docs":{},"步":{"docs":{},"操":{"docs":{},"作":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"通":{"docs":{},"过":{"docs":{},"提":{"docs":{},"交":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}},"册":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"模":{"docs":{},"块":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"模":{"docs":{},"块":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"一":{"docs":{},"个":{"docs":{},"动":{"docs":{},"态":{"docs":{},"模":{"docs":{},"块":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"监":{"docs":{},"听":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"测":{"docs":{},"试":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"testing.html":{"ref":"testing.html","tf":10.009310986964618}},"一":{"docs":{},"个":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}},"热":{"docs":{},"重":{"docs":{},"载":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"hot-reload.html":{"ref":"hot-reload.html","tf":10.009900990099009}}}},"替":{"docs":{},"换":{"docs":{},"新":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"用":{"docs":{},"户":{"docs":{},"来":{"docs":{},"说":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}},"不":{"docs":{},"用":{"docs":{},"常":{"docs":{},"量":{"docs":{},"取":{"docs":{},"决":{"docs":{},"于":{"docs":{},"你":{"docs":{},"—":{"docs":{},"—":{"docs":{},"在":{"docs":{},"需":{"docs":{},"要":{"docs":{},"多":{"docs":{},"人":{"docs":{},"协":{"docs":{},"作":{"docs":{},"的":{"docs":{},"大":{"docs":{},"型":{"docs":{},"项":{"docs":{},"目":{"docs":{},"中":{"docs":{},"，":{"docs":{},"这":{"docs":{},"会":{"docs":{},"很":{"docs":{},"有":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"。":{"docs":{},"但":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"不":{"docs":{},"喜":{"docs":{},"欢":{"docs":{},"，":{"docs":{},"你":{"docs":{},"完":{"docs":{},"全":{"docs":{},"可":{"docs":{},"以":{"docs":{},"不":{"docs":{},"这":{"docs":{},"样":{"docs":{},"做":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"“":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}},"以":{"docs":{},"上":{"docs":{},"配":{"docs":{},"置":{"docs":{},"启":{"docs":{},"动":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"模":{"docs":{},"拟":{"docs":{},"的":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"表":{"docs":{},"单":{"docs":{},"处":{"docs":{},"理":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"forms.html":{"ref":"forms.html","tf":10.010309278350515}}}}}},"项":{"docs":{},"目":{"docs":{},"结":{"docs":{},"构":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"structure.html":{"ref":"structure.html","tf":10.014285714285714}}}}}},"上":{"docs":{},"克":{"docs":{},"隆":{"docs":{},"代":{"docs":{},"码":{"docs":{},"并":{"docs":{},"自":{"docs":{},"己":{"docs":{},"构":{"docs":{},"建":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}},"发":{"docs":{},"布":{"docs":{},"的":{"docs":{},"最":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"。":{"docs":{},"您":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}}}}}},"的":{"docs":{},"用":{"docs":{},"户":{"docs":{},"输":{"docs":{},"入":{"docs":{},"导":{"docs":{},"致":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}},"插":{"docs":{},"件":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"插":{"docs":{},"件":{"docs":{},"直":{"docs":{},"接":{"docs":{},"接":{"docs":{},"收":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}},"面":{"docs":{},"插":{"docs":{},"件":{"docs":{},"会":{"docs":{},"默":{"docs":{},"认":{"docs":{},"启":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"发":{"docs":{},"布":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"，":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}},"注":{"docs":{},"册":{"docs":{"api.html":{"ref":"api.html","tf":0.007575757575757576}}}},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"記":{"docs":{},"述":{"docs":{},"す":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"デ":{"docs":{},"フ":{"docs":{},"ォ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"利":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"本":{"docs":{},"番":{"docs":{},"環":{"docs":{},"境":{"docs":{},"(":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"記":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"に":{"docs":{},"公":{"docs":{},"開":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}},"之":{"docs":{},"后":{"docs":{},"引":{"docs":{},"入":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}},"，":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"调":{"docs":{},"用":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}},"类":{"docs":{},"的":{"docs":{},"工":{"docs":{},"具":{"docs":{},"发":{"docs":{},"挥":{"docs":{},"作":{"docs":{},"用":{"docs":{},"，":{"docs":{},"同":{"docs":{},"时":{"docs":{},"把":{"docs":{},"这":{"docs":{},"些":{"docs":{},"常":{"docs":{},"量":{"docs":{},"放":{"docs":{},"在":{"docs":{},"单":{"docs":{},"独":{"docs":{},"的":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"可":{"docs":{},"以":{"docs":{},"让":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"合":{"docs":{},"作":{"docs":{},"者":{"docs":{},"对":{"docs":{},"整":{"docs":{},"个":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"进":{"docs":{},"行":{"docs":{},"自":{"docs":{},"动":{"docs":{},"安":{"docs":{},"装":{"docs":{},"：":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}},"使":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"化":{"docs":{},"更":{"docs":{},"显":{"docs":{},"式":{"docs":{},"和":{"docs":{},"易":{"docs":{},"调":{"docs":{},"试":{"docs":{},"，":{"docs":{},"但":{"docs":{},"也":{"docs":{},"会":{"docs":{},"使":{"docs":{},"代":{"docs":{},"码":{"docs":{},"变":{"docs":{},"得":{"docs":{},"冗":{"docs":{},"长":{"docs":{},"和":{"docs":{},"不":{"docs":{},"直":{"docs":{},"观":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"有":{"docs":{},"些":{"docs":{},"状":{"docs":{},"态":{"docs":{},"严":{"docs":{},"格":{"docs":{},"属":{"docs":{},"于":{"docs":{},"单":{"docs":{},"个":{"docs":{},"组":{"docs":{},"件":{"docs":{},"，":{"docs":{},"最":{"docs":{},"好":{"docs":{},"还":{"docs":{},"是":{"docs":{},"作":{"docs":{},"为":{"docs":{},"组":{"docs":{},"件":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"你":{"docs":{},"应":{"docs":{},"该":{"docs":{},"根":{"docs":{},"据":{"docs":{},"你":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"开":{"docs":{},"发":{"docs":{},"需":{"docs":{},"要":{"docs":{},"进":{"docs":{},"行":{"docs":{},"权":{"docs":{},"衡":{"docs":{},"和":{"docs":{},"确":{"docs":{},"定":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"暴":{"docs":{},"露":{"docs":{},"为":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}},"更":{"docs":{},"易":{"docs":{},"读":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"作":{"docs":{},"为":{"docs":{},"第":{"docs":{},"三":{"docs":{},"和":{"docs":{},"第":{"docs":{},"四":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"收":{"docs":{},"到":{"docs":{},"局":{"docs":{},"部":{"docs":{},"化":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"比":{"docs":{},"较":{"docs":{},"棘":{"docs":{},"手":{"docs":{},"：":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}},"试":{"docs":{},"图":{"docs":{},"直":{"docs":{},"接":{"docs":{},"修":{"docs":{},"改":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}},"分":{"docs":{},"支":{"docs":{},"下":{"docs":{},"的":{"docs":{},"最":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"，":{"docs":{},"您":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"从":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}}}}}},"发":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"调":{"docs":{},"用":{"docs":{},"并":{"docs":{},"接":{"docs":{},"收":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"割":{"docs":{},"成":{"docs":{},"模":{"docs":{},"块":{"docs":{},"（":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"）":{"docs":{},"。":{"docs":{},"每":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}},"到":{"docs":{},"单":{"docs":{},"独":{"docs":{},"的":{"docs":{},"文":{"docs":{},"件":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}},"在":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"api.html":{"ref":"api.html","tf":0.007575757575757576}},"一":{"docs":{},"个":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},"模":{"docs":{},"块":{"docs":{},"化":{"docs":{},"的":{"docs":{},"打":{"docs":{},"包":{"docs":{},"系":{"docs":{},"统":{"docs":{},"中":{"docs":{},"，":{"docs":{},"您":{"docs":{},"必":{"docs":{},"须":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"通":{"docs":{},"过":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"一":{"docs":{},"章":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"将":{"docs":{},"会":{"docs":{},"学":{"docs":{},"到":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}}}}}}}}}},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"，":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"单":{"docs":{},"独":{"docs":{},"构":{"docs":{},"建":{"docs":{},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{},"为":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}},"大":{"docs":{},"多":{"docs":{},"数":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"，":{"docs":{},"载":{"docs":{},"荷":{"docs":{},"应":{"docs":{},"该":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"可":{"docs":{},"以":{"docs":{},"包":{"docs":{},"含":{"docs":{},"多":{"docs":{},"个":{"docs":{},"字":{"docs":{},"段":{"docs":{},"并":{"docs":{},"且":{"docs":{},"记":{"docs":{},"录":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"提":{"docs":{},"交":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"分":{"docs":{},"发":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"不":{"docs":{},"同":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"可":{"docs":{},"以":{"docs":{},"触":{"docs":{},"发":{"docs":{},"多":{"docs":{},"个":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"访":{"docs":{},"问":{"docs":{},"全":{"docs":{},"局":{"docs":{},"内":{"docs":{},"容":{"docs":{},"（":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"开":{"docs":{},"始":{"docs":{},"记":{"docs":{},"录":{"docs":{},"之":{"docs":{},"前":{"docs":{},"转":{"docs":{},"换":{"docs":{},"状":{"docs":{},"态":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"插":{"docs":{},"件":{"docs":{},"中":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"直":{"docs":{},"接":{"docs":{},"修":{"docs":{},"改":{"docs":{},"状":{"docs":{},"态":{"docs":{},"—":{"docs":{},"—":{"docs":{},"类":{"docs":{},"似":{"docs":{},"于":{"docs":{},"组":{"docs":{},"件":{"docs":{},"，":{"docs":{},"只":{"docs":{},"能":{"docs":{},"通":{"docs":{},"过":{"docs":{},"提":{"docs":{},"交":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}}}}}}},"内":{"docs":{},"提":{"docs":{},"交":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"下":{"docs":{},"，":{"docs":{},"无":{"docs":{},"论":{"docs":{},"何":{"docs":{},"时":{"docs":{},"发":{"docs":{},"生":{"docs":{},"了":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"且":{"docs":{},"不":{"docs":{},"是":{"docs":{},"由":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"中":{"docs":{},"执":{"docs":{},"行":{"docs":{},"测":{"docs":{},"试":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"测":{"docs":{},"试":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"如":{"docs":{},"果":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}},"您":{"docs":{},"不":{"docs":{},"打":{"docs":{},"算":{"docs":{},"开":{"docs":{},"发":{"docs":{},"大":{"docs":{},"型":{"docs":{},"单":{"docs":{},"页":{"docs":{},"应":{"docs":{},"用":{"docs":{},"，":{"docs":{},"使":{"docs":{},"用":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}},"在":{"docs":{},"模":{"docs":{},"块":{"docs":{},"化":{"docs":{},"构":{"docs":{},"建":{"docs":{},"系":{"docs":{},"统":{"docs":{},"中":{"docs":{},"，":{"docs":{},"请":{"docs":{},"确":{"docs":{},"保":{"docs":{},"在":{"docs":{},"开":{"docs":{},"头":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"则":{"docs":{},"为":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}},"你":{"docs":{},"想":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}},"希":{"docs":{},"望":{"docs":{},"使":{"docs":{},"用":{"docs":{},"全":{"docs":{},"局":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"插":{"docs":{},"件":{"docs":{},"（":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"）":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"模":{"docs":{},"块":{"docs":{},"并":{"docs":{},"允":{"docs":{},"许":{"docs":{},"用":{"docs":{},"户":{"docs":{},"将":{"docs":{},"其":{"docs":{},"添":{"docs":{},"加":{"docs":{},"到":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}},"传":{"docs":{},"入":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"，":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"会":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"根":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"多":{"docs":{},"个":{"docs":{},"组":{"docs":{},"件":{"docs":{},"需":{"docs":{},"要":{"docs":{},"用":{"docs":{},"到":{"docs":{},"此":{"docs":{},"属":{"docs":{},"性":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"要":{"docs":{},"么":{"docs":{},"复":{"docs":{},"制":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"，":{"docs":{},"或":{"docs":{},"者":{"docs":{},"抽":{"docs":{},"取":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"共":{"docs":{},"享":{"docs":{},"函":{"docs":{},"数":{"docs":{},"然":{"docs":{},"后":{"docs":{},"在":{"docs":{},"多":{"docs":{},"处":{"docs":{},"导":{"docs":{},"入":{"docs":{},"它":{"docs":{},"—":{"docs":{},"—":{"docs":{},"无":{"docs":{},"论":{"docs":{},"哪":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"都":{"docs":{},"不":{"docs":{},"是":{"docs":{},"很":{"docs":{},"理":{"docs":{},"想":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"希":{"docs":{},"望":{"docs":{},"你":{"docs":{},"的":{"docs":{},"模":{"docs":{},"块":{"docs":{},"具":{"docs":{},"有":{"docs":{},"更":{"docs":{},"高":{"docs":{},"的":{"docs":{},"封":{"docs":{},"装":{"docs":{},"度":{"docs":{},"和":{"docs":{},"复":{"docs":{},"用":{"docs":{},"性":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"添":{"docs":{},"加":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}},"我":{"docs":{},"们":{"docs":{},"使":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"纯":{"docs":{},"对":{"docs":{},"象":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"那":{"docs":{},"么":{"docs":{},"这":{"docs":{},"个":{"docs":{},"状":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"会":{"docs":{},"通":{"docs":{},"过":{"docs":{},"引":{"docs":{},"用":{"docs":{},"被":{"docs":{},"共":{"docs":{},"享":{"docs":{},"，":{"docs":{},"导":{"docs":{},"致":{"docs":{},"状":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"被":{"docs":{},"修":{"docs":{},"改":{"docs":{},"时":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"正":{"docs":{},"在":{"docs":{},"使":{"docs":{},"用":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"引":{"docs":{},"用":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}},"当":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},"全":{"docs":{},"局":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}},"对":{"docs":{},"象":{"docs":{},"风":{"docs":{},"格":{"docs":{},"的":{"docs":{},"提":{"docs":{},"交":{"docs":{},"方":{"docs":{},"式":{"docs":{},"，":{"docs":{},"整":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"都":{"docs":{},"作":{"docs":{},"为":{"docs":{},"载":{"docs":{},"荷":{"docs":{},"传":{"docs":{},"给":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"组":{"docs":{},"件":{"docs":{},"需":{"docs":{},"要":{"docs":{},"获":{"docs":{},"取":{"docs":{},"多":{"docs":{},"个":{"docs":{},"状":{"docs":{},"态":{"docs":{},"时":{"docs":{},"候":{"docs":{},"，":{"docs":{},"将":{"docs":{},"这":{"docs":{},"些":{"docs":{},"状":{"docs":{},"态":{"docs":{},"都":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"会":{"docs":{},"有":{"docs":{},"些":{"docs":{},"重":{"docs":{},"复":{"docs":{},"和":{"docs":{},"冗":{"docs":{},"余":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"解":{"docs":{},"决":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"题":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"映":{"docs":{},"射":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"名":{"docs":{},"称":{"docs":{},"与":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"对":{"docs":{},"象":{"docs":{},"上":{"docs":{},"添":{"docs":{},"加":{"docs":{},"新":{"docs":{},"属":{"docs":{},"性":{"docs":{},"时":{"docs":{},"，":{"docs":{},"你":{"docs":{},"应":{"docs":{},"该":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}},"在":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"在":{"docs":{},"一":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"里":{"docs":{},"时":{"docs":{},"会":{"docs":{},"特":{"docs":{},"别":{"docs":{},"一":{"docs":{},"些":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"基":{"docs":{},"于":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}},"示":{"docs":{},"：":{"docs":{},"我":{"docs":{},"们":{"docs":{},"将":{"docs":{},"在":{"docs":{},"后":{"docs":{},"续":{"docs":{},"的":{"docs":{},"文":{"docs":{},"档":{"docs":{},"示":{"docs":{},"例":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}},"案":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"交":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"载":{"docs":{},"荷":{"docs":{},"（":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"）":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"的":{"docs":{},"是":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"时":{"docs":{},"，":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"以":{"docs":{},"上":{"docs":{},"安":{"docs":{},"装":{"docs":{},"过":{"docs":{},"程":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"此":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"”":{"docs":{},"要":{"docs":{},"唤":{"docs":{},"醒":{"docs":{},"一":{"docs":{},"个":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}},"你":{"docs":{},"就":{"docs":{},"知":{"docs":{},"道":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"很":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"想":{"docs":{},"保":{"docs":{},"留":{"docs":{},"过":{"docs":{},"去":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"为":{"docs":{},"了":{"docs":{},"在":{"docs":{},"服":{"docs":{},"务":{"docs":{},"端":{"docs":{},"渲":{"docs":{},"染":{"docs":{},"中":{"docs":{},"避":{"docs":{},"免":{"docs":{},"有":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"单":{"docs":{},"例":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"属":{"docs":{},"于":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"模":{"docs":{},"块":{"docs":{},"）":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"来":{"docs":{},"安":{"docs":{},"装":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}},"自":{"docs":{},"不":{"docs":{},"同":{"docs":{},"视":{"docs":{},"图":{"docs":{},"的":{"docs":{},"行":{"docs":{},"为":{"docs":{},"需":{"docs":{},"要":{"docs":{},"变":{"docs":{},"更":{"docs":{},"同":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}},"获":{"docs":{},"取":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"状":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"，":{"docs":{},"以":{"docs":{},"及":{"docs":{},"通":{"docs":{},"过":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}},"说":{"docs":{},"是":{"docs":{},"必":{"docs":{},"要":{"docs":{},"的":{"docs":{},"。":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}}}}}},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}},"改":{"docs":{},"变":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"你":{"docs":{},"怎":{"docs":{},"么":{"docs":{},"知":{"docs":{},"道":{"docs":{},"什":{"docs":{},"么":{"docs":{},"时":{"docs":{},"候":{"docs":{},"回":{"docs":{},"调":{"docs":{},"和":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"先":{"docs":{},"回":{"docs":{},"调":{"docs":{},"呢":{"docs":{},"？":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"我":{"docs":{},"们":{"docs":{},"要":{"docs":{},"区":{"docs":{},"分":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"概":{"docs":{},"念":{"docs":{},"。":{"docs":{},"在":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"看":{"docs":{},"一":{"docs":{},"个":{"docs":{},"更":{"docs":{},"加":{"docs":{},"实":{"docs":{},"际":{"docs":{},"的":{"docs":{},"购":{"docs":{},"物":{"docs":{},"车":{"docs":{},"示":{"docs":{},"例":{"docs":{},"，":{"docs":{},"涉":{"docs":{},"及":{"docs":{},"到":{"docs":{},"调":{"docs":{},"用":{"docs":{},"异":{"docs":{},"步":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}},"简":{"docs":{},"化":{"docs":{},"代":{"docs":{},"码":{"docs":{},"（":{"docs":{},"特":{"docs":{},"别":{"docs":{},"是":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}},"记":{"docs":{},"录":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"动":{"docs":{},"态":{"docs":{},"卸":{"docs":{},"载":{"docs":{},"模":{"docs":{},"块":{"docs":{},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},"，":{"docs":{},"你":{"docs":{},"不":{"docs":{},"能":{"docs":{},"使":{"docs":{},"用":{"docs":{},"此":{"docs":{},"方":{"docs":{},"法":{"docs":{},"卸":{"docs":{},"载":{"docs":{},"静":{"docs":{},"态":{"docs":{},"模":{"docs":{},"块":{"docs":{},"（":{"docs":{},"即":{"docs":{},"创":{"docs":{},"建":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"触":{"docs":{},"发":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"标":{"docs":{},"签":{"docs":{},"引":{"docs":{},"用":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}},"入":{"docs":{},"，":{"docs":{},"它":{"docs":{},"会":{"docs":{},"提":{"docs":{},"供":{"docs":{},"全":{"docs":{},"局":{"docs":{},"方":{"docs":{},"法":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}},"的":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"mutations.html":{"ref":"mutations.html","tf":0.012307692307692308},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"plugins.html":{"ref":"plugins.html","tf":0.011235955056179775},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.015151515151515152}},"作":{"docs":{},"者":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}},"官":{"docs":{},"方":{"docs":{},"调":{"docs":{},"试":{"docs":{},"工":{"docs":{},"具":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}},"细":{"docs":{},"粒":{"docs":{},"度":{"docs":{},"数":{"docs":{},"据":{"docs":{},"响":{"docs":{},"应":{"docs":{},"机":{"docs":{},"制":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"高":{"docs":{},"效":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"更":{"docs":{},"新":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}},"话":{"docs":{},"说":{"docs":{},"就":{"docs":{},"是":{"docs":{},"：":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}},"方":{"docs":{},"式":{"docs":{},"，":{"docs":{},"而":{"docs":{},"非":{"docs":{},"直":{"docs":{},"接":{"docs":{},"改":{"docs":{},"变":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}},"使":{"docs":{},"其":{"docs":{},"成":{"docs":{},"为":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"模":{"docs":{},"块":{"docs":{},"。":{"docs":{},"当":{"docs":{},"模":{"docs":{},"块":{"docs":{},"被":{"docs":{},"注":{"docs":{},"册":{"docs":{},"后":{"docs":{},"，":{"docs":{},"它":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}},"状":{"docs":{},"态":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}},"存":{"docs":{},"储":{"docs":{},"是":{"docs":{},"响":{"docs":{},"应":{"docs":{},"式":{"docs":{},"的":{"docs":{},"。":{"docs":{},"当":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}},"，":{"docs":{},"从":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"这":{"docs":{},"些":{"docs":{},"核":{"docs":{},"心":{"docs":{},"概":{"docs":{},"念":{"docs":{},"。":{"docs":{},"他":{"docs":{},"们":{"docs":{},"是":{"docs":{},"：":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}}}}}}}}}}}},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{},"名":{"docs":{},"称":{"docs":{},"相":{"docs":{},"同":{"docs":{},"时":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"给":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"注":{"docs":{},"入":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}},"，":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"给":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}},"现":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"需":{"docs":{},"要":{"docs":{},"频":{"docs":{},"繁":{"docs":{},"地":{"docs":{},"导":{"docs":{},"入":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"在":{"docs":{},"测":{"docs":{},"试":{"docs":{},"组":{"docs":{},"件":{"docs":{},"时":{"docs":{},"需":{"docs":{},"要":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"）":{"docs":{},"。":{"docs":{},"就":{"docs":{},"像":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"一":{"docs":{},"样":{"docs":{},"，":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"会":{"docs":{},"根":{"docs":{},"据":{"docs":{},"它":{"docs":{},"的":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"被":{"docs":{},"缓":{"docs":{},"存":{"docs":{},"起":{"docs":{},"来":{"docs":{},"，":{"docs":{},"且":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"它":{"docs":{},"的":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"值":{"docs":{},"发":{"docs":{},"生":{"docs":{},"了":{"docs":{},"改":{"docs":{},"变":{"docs":{},"才":{"docs":{},"会":{"docs":{},"被":{"docs":{},"重":{"docs":{},"新":{"docs":{},"计":{"docs":{},"算":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"另":{"docs":{},"一":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"是":{"docs":{},"直":{"docs":{},"接":{"docs":{},"使":{"docs":{},"用":{"docs":{},"包":{"docs":{},"含":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}},"响":{"docs":{},"应":{"docs":{},"规":{"docs":{},"则":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"对":{"docs":{},"象":{"docs":{},"展":{"docs":{},"开":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"这":{"docs":{},"样":{"docs":{},"写":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}},"，":{"docs":{},"在":{"docs":{},"用":{"docs":{},"户":{"docs":{},"输":{"docs":{},"入":{"docs":{},"时":{"docs":{},"，":{"docs":{},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"都":{"docs":{},"已":{"docs":{},"经":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"在":{"docs":{},"了":{"docs":{},"给":{"docs":{},"定":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"上":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}},"处":{"docs":{},"理":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}},"第":{"docs":{},"四":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"地":{"docs":{},"方":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}},"格":{"docs":{},"式":{"docs":{},"为":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}},"钩":{"docs":{},"子":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}},"时":{"docs":{},"候":{"docs":{},"传":{"docs":{},"入":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"增":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}},"双":{"docs":{},"向":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"：":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}},"思":{"docs":{},"维":{"docs":{},"”":{"docs":{},"去":{"docs":{},"解":{"docs":{},"决":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"题":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"是":{"docs":{},"：":{"docs":{},"给":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"（":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"任":{"docs":{},"何":{"docs":{},"你":{"docs":{},"喜":{"docs":{},"欢":{"docs":{},"的":{"docs":{},"测":{"docs":{},"试":{"docs":{},"框":{"docs":{},"架":{"docs":{},"）":{"docs":{},"：":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}}}},"：":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"测":{"docs":{},"试":{"docs":{},"与":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"示":{"docs":{},"例":{"docs":{},"：":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"结":{"docs":{},"果":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"模":{"docs":{},"块":{"docs":{},"编":{"docs":{},"译":{"docs":{},"格":{"docs":{},"式":{"docs":{},"问":{"docs":{},"题":{"docs":{},"，":{"docs":{},"这":{"docs":{},"里":{"docs":{},"需":{"docs":{},"要":{"docs":{},"加":{"docs":{},"上":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}}}}}},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"作":{"docs":{},"为":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"，":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"根":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"模":{"docs":{},"块":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}},"根":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"，":{"docs":{},"仅":{"docs":{},"用":{"docs":{},"状":{"docs":{},"态":{"docs":{},"合":{"docs":{},"并":{"docs":{},"或":{"docs":{},"时":{"docs":{},"光":{"docs":{},"旅":{"docs":{},"行":{"docs":{},"调":{"docs":{},"试":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}},"直":{"docs":{},"接":{"docs":{},"下":{"docs":{},"载":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}},"ダ":{"docs":{},"ウ":{"docs":{},"ン":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"す":{"docs":{},"る":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"を":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"己":{"docs":{},"构":{"docs":{},"建":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}},"动":{"docs":{},"展":{"docs":{},"开":{"docs":{},"记":{"docs":{},"录":{"docs":{},"的":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"定":{"docs":{},"义":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"带":{"docs":{},"一":{"docs":{},"个":{"docs":{},"日":{"docs":{},"志":{"docs":{},"插":{"docs":{},"件":{"docs":{},"用":{"docs":{},"于":{"docs":{},"一":{"docs":{},"般":{"docs":{},"的":{"docs":{},"调":{"docs":{},"试":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"指":{"docs":{},"定":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"版":{"docs":{},"本":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}}}},"个":{"docs":{},"状":{"docs":{},"态":{"docs":{},"自":{"docs":{},"管":{"docs":{},"理":{"docs":{},"应":{"docs":{},"用":{"docs":{},"包":{"docs":{},"含":{"docs":{},"以":{"docs":{},"下":{"docs":{},"几":{"docs":{},"个":{"docs":{},"部":{"docs":{},"分":{"docs":{},"：":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"是":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"最":{"docs":{},"基":{"docs":{},"本":{"docs":{},"的":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}},"些":{"docs":{},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"模":{"docs":{},"块":{"docs":{},"时":{"docs":{},"，":{"docs":{},"写":{"docs":{},"起":{"docs":{},"来":{"docs":{},"可":{"docs":{},"能":{"docs":{},"比":{"docs":{},"较":{"docs":{},"繁":{"docs":{},"琐":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"会":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"一":{"docs":{},"个":{"docs":{},"错":{"docs":{},"误":{"docs":{},"。":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"链":{"docs":{},"接":{"docs":{},"。":{"docs":{},"以":{"docs":{},"上":{"docs":{},"的":{"docs":{},"链":{"docs":{},"接":{"docs":{},"会":{"docs":{},"一":{"docs":{},"直":{"docs":{},"指":{"docs":{},"向":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}}}}}}}}},"也":{"docs":{},"集":{"docs":{},"成":{"docs":{},"到":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{},"其":{"docs":{},"他":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}},"支":{"docs":{},"持":{"docs":{},"载":{"docs":{},"荷":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"需":{"docs":{},"要":{"docs":{},"与":{"docs":{},"使":{"docs":{},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}},"被":{"docs":{},"局":{"docs":{},"部":{"docs":{},"化":{"docs":{},"了":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"什":{"docs":{},"么":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"我":{"docs":{},"应":{"docs":{},"该":{"docs":{},"使":{"docs":{},"用":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}},"是":{"docs":{},"“":{"docs":{},"状":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"模":{"docs":{},"式":{"docs":{},"”":{"docs":{},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}},"时":{"docs":{},"候":{"docs":{},"结":{"docs":{},"束":{"docs":{},"呢":{"docs":{},"？":{"docs":{},"更":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"是":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"如":{"docs":{},"何":{"docs":{},"才":{"docs":{},"能":{"docs":{},"组":{"docs":{},"合":{"docs":{},"多":{"docs":{},"个":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}}}}},"以":{"docs":{},"下":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"docs":{},"单":{"docs":{},"向":{"docs":{},"数":{"docs":{},"据":{"docs":{},"流":{"docs":{},"”":{"docs":{},"理":{"docs":{},"念":{"docs":{},"的":{"docs":{},"极":{"docs":{},"简":{"docs":{},"示":{"docs":{},"意":{"docs":{},"：":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"新":{"docs":{},"对":{"docs":{},"象":{"docs":{},"替":{"docs":{},"换":{"docs":{},"老":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"利":{"docs":{},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}},"对":{"docs":{},"象":{"docs":{},"形":{"docs":{},"式":{"docs":{},"分":{"docs":{},"发":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}},"载":{"docs":{},"荷":{"docs":{},"形":{"docs":{},"式":{"docs":{},"分":{"docs":{},"发":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}},"允":{"docs":{},"许":{"docs":{},"保":{"docs":{},"留":{"docs":{},"之":{"docs":{},"前":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"降":{"docs":{},"で":{"docs":{},"サ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},")":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"但":{"docs":{},"是":{"docs":{},"，":{"docs":{},"当":{"docs":{},"我":{"docs":{},"们":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"遇":{"docs":{},"到":{"docs":{},"多":{"docs":{},"个":{"docs":{},"组":{"docs":{},"件":{"docs":{},"共":{"docs":{},"享":{"docs":{},"状":{"docs":{},"态":{"docs":{},"时":{"docs":{},"，":{"docs":{},"单":{"docs":{},"向":{"docs":{},"数":{"docs":{},"据":{"docs":{},"流":{"docs":{},"的":{"docs":{},"简":{"docs":{},"洁":{"docs":{},"性":{"docs":{},"很":{"docs":{},"容":{"docs":{},"易":{"docs":{},"被":{"docs":{},"破":{"docs":{},"坏":{"docs":{},"：":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"另":{"docs":{},"外":{"docs":{},"，":{"docs":{},"通":{"docs":{},"过":{"docs":{},"定":{"docs":{},"义":{"docs":{},"和":{"docs":{},"隔":{"docs":{},"离":{"docs":{},"状":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"中":{"docs":{},"的":{"docs":{},"各":{"docs":{},"种":{"docs":{},"概":{"docs":{},"念":{"docs":{},"并":{"docs":{},"强":{"docs":{},"制":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"一":{"docs":{},"定":{"docs":{},"的":{"docs":{},"规":{"docs":{},"则":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"将":{"docs":{},"会":{"docs":{},"变":{"docs":{},"得":{"docs":{},"更":{"docs":{},"结":{"docs":{},"构":{"docs":{},"化":{"docs":{},"且":{"docs":{},"易":{"docs":{},"维":{"docs":{},"护":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"我":{"docs":{},"们":{"docs":{},"管":{"docs":{},"理":{"docs":{},"共":{"docs":{},"享":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"但":{"docs":{},"也":{"docs":{},"附":{"docs":{},"带":{"docs":{},"了":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"概":{"docs":{},"念":{"docs":{},"和":{"docs":{},"框":{"docs":{},"架":{"docs":{},"。":{"docs":{},"这":{"docs":{},"需":{"docs":{},"要":{"docs":{},"对":{"docs":{},"短":{"docs":{},"期":{"docs":{},"和":{"docs":{},"长":{"docs":{},"期":{"docs":{},"效":{"docs":{},"益":{"docs":{},"进":{"docs":{},"行":{"docs":{},"权":{"docs":{},"衡":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"任":{"docs":{},"意":{"docs":{},"异":{"docs":{},"步":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}},"处":{"docs":{},"理":{"docs":{},"被":{"docs":{},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}},"能":{"docs":{},"是":{"docs":{},"繁":{"docs":{},"琐":{"docs":{},"冗":{"docs":{},"余":{"docs":{},"的":{"docs":{},"。":{"docs":{},"确":{"docs":{},"实":{"docs":{},"是":{"docs":{},"如":{"docs":{},"此":{"docs":{},"—":{"docs":{},"—":{"docs":{},"如":{"docs":{},"果":{"docs":{},"您":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"够":{"docs":{},"简":{"docs":{},"单":{"docs":{},"，":{"docs":{},"您":{"docs":{},"最":{"docs":{},"好":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"因":{"docs":{},"此":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"不":{"docs":{},"把":{"docs":{},"组":{"docs":{},"件":{"docs":{},"的":{"docs":{},"共":{"docs":{},"享":{"docs":{},"状":{"docs":{},"态":{"docs":{},"抽":{"docs":{},"取":{"docs":{},"出":{"docs":{},"来":{"docs":{},"，":{"docs":{},"以":{"docs":{},"一":{"docs":{},"个":{"docs":{},"全":{"docs":{},"局":{"docs":{},"单":{"docs":{},"例":{"docs":{},"模":{"docs":{},"式":{"docs":{},"管":{"docs":{},"理":{"docs":{},"呢":{"docs":{},"？":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"模":{"docs":{},"式":{"docs":{},"下":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"的":{"docs":{},"组":{"docs":{},"件":{"docs":{},"树":{"docs":{},"构":{"docs":{},"成":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"巨":{"docs":{},"大":{"docs":{},"的":{"docs":{},"“":{"docs":{},"视":{"docs":{},"图":{"docs":{},"”":{"docs":{},"，":{"docs":{},"不":{"docs":{},"管":{"docs":{},"在":{"docs":{},"树":{"docs":{},"的":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"位":{"docs":{},"置":{"docs":{},"，":{"docs":{},"任":{"docs":{},"何":{"docs":{},"组":{"docs":{},"件":{"docs":{},"都":{"docs":{},"能":{"docs":{},"获":{"docs":{},"取":{"docs":{},"状":{"docs":{},"态":{"docs":{},"或":{"docs":{},"者":{"docs":{},"触":{"docs":{},"发":{"docs":{},"行":{"docs":{},"为":{"docs":{},"！":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"为":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}},"多":{"docs":{},"个":{"docs":{},"视":{"docs":{},"图":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"于":{"docs":{},"同":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}},"对":{"docs":{},"于":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}},"问":{"docs":{},"题":{"docs":{},"一":{"docs":{},"，":{"docs":{},"传":{"docs":{},"参":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"对":{"docs":{},"于":{"docs":{},"多":{"docs":{},"层":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"的":{"docs":{},"组":{"docs":{},"件":{"docs":{},"将":{"docs":{},"会":{"docs":{},"非":{"docs":{},"常":{"docs":{},"繁":{"docs":{},"琐":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"对":{"docs":{},"于":{"docs":{},"兄":{"docs":{},"弟":{"docs":{},"组":{"docs":{},"件":{"docs":{},"间":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"传":{"docs":{},"递":{"docs":{},"无":{"docs":{},"能":{"docs":{},"为":{"docs":{},"力":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"问":{"docs":{},"题":{"docs":{},"二":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"经":{"docs":{},"常":{"docs":{},"会":{"docs":{},"采":{"docs":{},"用":{"docs":{},"父":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"直":{"docs":{},"接":{"docs":{},"引":{"docs":{},"用":{"docs":{},"或":{"docs":{},"者":{"docs":{},"通":{"docs":{},"过":{"docs":{},"事":{"docs":{},"件":{"docs":{},"来":{"docs":{},"变":{"docs":{},"更":{"docs":{},"和":{"docs":{},"同":{"docs":{},"步":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"多":{"docs":{},"份":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"。":{"docs":{},"以":{"docs":{},"上":{"docs":{},"的":{"docs":{},"这":{"docs":{},"些":{"docs":{},"模":{"docs":{},"式":{"docs":{},"非":{"docs":{},"常":{"docs":{},"脆":{"docs":{},"弱":{"docs":{},"，":{"docs":{},"通":{"docs":{},"常":{"docs":{},"会":{"docs":{},"导":{"docs":{},"致":{"docs":{},"无":{"docs":{},"法":{"docs":{},"维":{"docs":{},"护":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}}}}}},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"称":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"作":{"docs":{},"为":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"上":{"docs":{},"述":{"docs":{},"函":{"docs":{},"数":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"所":{"docs":{},"有":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"都":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"将":{"docs":{},"该":{"docs":{},"模":{"docs":{},"块":{"docs":{},"作":{"docs":{},"为":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"。":{"docs":{},"于":{"docs":{},"是":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"可":{"docs":{},"以":{"docs":{},"简":{"docs":{},"化":{"docs":{},"为":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"大":{"docs":{},"型":{"docs":{},"应":{"docs":{},"用":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"会":{"docs":{},"希":{"docs":{},"望":{"docs":{},"把":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}},"象":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"和":{"docs":{},"一":{"docs":{},"些":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}},"展":{"docs":{},"开":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}},"提":{"docs":{},"供":{"docs":{},"给":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}},"中":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"风":{"docs":{},"格":{"docs":{},"的":{"docs":{},"提":{"docs":{},"交":{"docs":{},"方":{"docs":{},"式":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"不":{"docs":{},"是":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"，":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}},"尤":{"docs":{},"其":{"docs":{},"是":{"docs":{},"对":{"docs":{},"于":{"docs":{},"重":{"docs":{},"用":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"就":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"变":{"docs":{},"得":{"docs":{},"相":{"docs":{},"当":{"docs":{},"臃":{"docs":{},"肿":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"是":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"传":{"docs":{},"入":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"包":{"docs":{},"含":{"docs":{},"以":{"docs":{},"下":{"docs":{},"属":{"docs":{},"性":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"将":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"actions.html":{"ref":"actions.html","tf":0.008797653958944282}},"会":{"docs":{},"成":{"docs":{},"为":{"docs":{},"自":{"docs":{},"然":{"docs":{},"而":{"docs":{},"然":{"docs":{},"的":{"docs":{},"选":{"docs":{},"择":{"docs":{},"。":{"docs":{},"引":{"docs":{},"用":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}},"就":{"docs":{},"足":{"docs":{},"够":{"docs":{},"您":{"docs":{},"所":{"docs":{},"需":{"docs":{},"了":{"docs":{},"。":{"docs":{},"但":{"docs":{},"是":{"docs":{},"，":{"docs":{},"如":{"docs":{},"果":{"docs":{},"您":{"docs":{},"需":{"docs":{},"要":{"docs":{},"构":{"docs":{},"建":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"中":{"docs":{},"大":{"docs":{},"型":{"docs":{},"单":{"docs":{},"页":{"docs":{},"应":{"docs":{},"用":{"docs":{},"，":{"docs":{},"您":{"docs":{},"很":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"考":{"docs":{},"虑":{"docs":{},"如":{"docs":{},"何":{"docs":{},"更":{"docs":{},"好":{"docs":{},"地":{"docs":{},"在":{"docs":{},"组":{"docs":{},"件":{"docs":{},"外":{"docs":{},"部":{"docs":{},"管":{"docs":{},"理":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"受":{"docs":{},"约":{"docs":{},"束":{"docs":{},"！":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}},"应":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"程":{"docs":{},"序":{"docs":{},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"它":{"docs":{},"采":{"docs":{},"用":{"docs":{},"集":{"docs":{},"中":{"docs":{},"式":{"docs":{},"存":{"docs":{},"储":{"docs":{},"管":{"docs":{},"理":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"组":{"docs":{},"件":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"并":{"docs":{},"以":{"docs":{},"相":{"docs":{},"应":{"docs":{},"的":{"docs":{},"规":{"docs":{},"则":{"docs":{},"保":{"docs":{},"证":{"docs":{},"状":{"docs":{},"态":{"docs":{},"以":{"docs":{},"一":{"docs":{},"种":{"docs":{},"可":{"docs":{},"预":{"docs":{},"测":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"发":{"docs":{},"生":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"核":{"docs":{},"心":{"docs":{},"就":{"docs":{},"是":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}},"层":{"docs":{},"级":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"应":{"docs":{},"该":{"docs":{},"集":{"docs":{},"中":{"docs":{},"到":{"docs":{},"单":{"docs":{},"个":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}}},"对":{"docs":{},"起":{"docs":{},"来":{"docs":{},"略":{"docs":{},"微":{"docs":{},"棘":{"docs":{},"手":{"docs":{},"，":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"可":{"docs":{},"能":{"docs":{},"需":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{},"外":{"docs":{},"部":{"docs":{},"的":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}},"映":{"docs":{},"射":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695}},"到":{"docs":{},"视":{"docs":{},"图":{"docs":{},"；":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}},"局":{"docs":{},"部":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}},"为":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.012307692307692308},"actions.html":{"ref":"actions.html","tf":0.011730205278592375}}}}},"架":{"docs":{},"构":{"docs":{},"就":{"docs":{},"像":{"docs":{},"眼":{"docs":{},"镜":{"docs":{},"：":{"docs":{},"您":{"docs":{},"自":{"docs":{},"会":{"docs":{},"知":{"docs":{},"道":{"docs":{},"什":{"docs":{},"么":{"docs":{},"时":{"docs":{},"候":{"docs":{},"需":{"docs":{},"要":{"docs":{},"它":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}}},"背":{"docs":{},"后":{"docs":{},"的":{"docs":{},"基":{"docs":{},"本":{"docs":{},"思":{"docs":{},"想":{"docs":{},"，":{"docs":{},"借":{"docs":{},"鉴":{"docs":{},"了":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}},"虽":{"docs":{},"然":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}},"计":{"docs":{},"数":{"docs":{},"应":{"docs":{},"用":{"docs":{},"开":{"docs":{},"始":{"docs":{},"：":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"从":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}},"开":{"docs":{},"始":{"docs":{},"吧":{"docs":{},"。":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}}}}},"来":{"docs":{},"注":{"docs":{},"册":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}},"设":{"docs":{},"计":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"库":{"docs":{},"，":{"docs":{},"以":{"docs":{},"利":{"docs":{},"用":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}},"调":{"docs":{},"试":{"docs":{},"、":{"docs":{},"状":{"docs":{},"态":{"docs":{},"快":{"docs":{},"照":{"docs":{},"导":{"docs":{},"入":{"docs":{},"导":{"docs":{},"出":{"docs":{},"等":{"docs":{},"高":{"docs":{},"级":{"docs":{},"调":{"docs":{},"试":{"docs":{},"功":{"docs":{},"能":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},"（":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"注":{"docs":{},"入":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}},"先":{"docs":{},"在":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"注":{"docs":{},"入":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"便":{"docs":{},"于":{"docs":{},"解":{"docs":{},"决":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"抽":{"docs":{},"象":{"docs":{},"成":{"docs":{},"服":{"docs":{},"务":{"docs":{},"，":{"docs":{},"然":{"docs":{},"后":{"docs":{},"在":{"docs":{},"测":{"docs":{},"试":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"提":{"docs":{},"交":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}},"的":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"改":{"docs":{},"变":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"发":{"docs":{},"生":{"docs":{},"变":{"docs":{},"化":{"docs":{},"，":{"docs":{},"那":{"docs":{},"么":{"docs":{},"相":{"docs":{},"应":{"docs":{},"的":{"docs":{},"组":{"docs":{},"件":{"docs":{},"也":{"docs":{},"会":{"docs":{},"相":{"docs":{},"应":{"docs":{},"地":{"docs":{},"得":{"docs":{},"到":{"docs":{},"高":{"docs":{},"效":{"docs":{},"更":{"docs":{},"新":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"响":{"docs":{},"应":{"docs":{},"式":{"docs":{},"的":{"docs":{},"，":{"docs":{},"在":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}},"那":{"docs":{},"么":{"docs":{},"当":{"docs":{},"我":{"docs":{},"们":{"docs":{},"变":{"docs":{},"更":{"docs":{},"状":{"docs":{},"态":{"docs":{},"时":{"docs":{},"，":{"docs":{},"监":{"docs":{},"视":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"途":{"docs":{},"径":{"docs":{},"就":{"docs":{},"是":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"提":{"docs":{},"交":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"是":{"docs":{},"提":{"docs":{},"交":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}},"简":{"docs":{},"单":{"docs":{},"到":{"docs":{},"仅":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"中":{"docs":{},"返":{"docs":{},"回":{"docs":{},"即":{"docs":{},"可":{"docs":{},"。":{"docs":{},"触":{"docs":{},"发":{"docs":{},"变":{"docs":{},"化":{"docs":{},"也":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"在":{"docs":{},"组":{"docs":{},"件":{"docs":{},"的":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"异":{"docs":{},"步":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"的":{"docs":{},"回":{"docs":{},"调":{"docs":{},"让":{"docs":{},"这":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"完":{"docs":{},"成":{"docs":{},"：":{"docs":{},"因":{"docs":{},"为":{"docs":{},"当":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}},"读":{"docs":{},"取":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"，":{"docs":{},"若":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"“":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"”":{"docs":{},"（":{"docs":{},"可":{"docs":{},"以":{"docs":{},"认":{"docs":{},"为":{"docs":{},"是":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}},"派":{"docs":{},"生":{"docs":{},"出":{"docs":{},"一":{"docs":{},"些":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"例":{"docs":{},"如":{"docs":{},"对":{"docs":{},"列":{"docs":{},"表":{"docs":{},"进":{"docs":{},"行":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"并":{"docs":{},"计":{"docs":{},"数":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"好":{"docs":{},"所":{"docs":{},"有":{"docs":{},"所":{"docs":{},"需":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}},"混":{"docs":{},"合":{"docs":{},"异":{"docs":{},"步":{"docs":{},"调":{"docs":{},"用":{"docs":{},"会":{"docs":{},"导":{"docs":{},"致":{"docs":{},"你":{"docs":{},"的":{"docs":{},"程":{"docs":{},"序":{"docs":{},"很":{"docs":{},"难":{"docs":{},"调":{"docs":{},"试":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"当":{"docs":{},"你":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"异":{"docs":{},"步":{"docs":{},"回":{"docs":{},"调":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"，":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}},"`":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"多":{"docs":{},"次":{"docs":{},"注":{"docs":{},"册":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"查":{"docs":{},"找":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}}},"附":{"docs":{},"加":{"docs":{},"新":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"来":{"docs":{},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"很":{"docs":{},"有":{"docs":{},"用":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"。":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"是":{"docs":{},"使":{"docs":{},"用":{"docs":{},"带":{"docs":{},"有":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}},"绑":{"docs":{},"定":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{},"换":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"，":{"docs":{},"你":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}},"测":{"docs":{},"试":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"使":{"docs":{},"用":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}},"你":{"docs":{},"不":{"docs":{},"能":{"docs":{},"直":{"docs":{},"接":{"docs":{},"改":{"docs":{},"变":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}},"调":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"让":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"可":{"docs":{},"以":{"docs":{},"向":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},"在":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"在":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}},"再":{"docs":{},"次":{"docs":{},"强":{"docs":{},"调":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"通":{"docs":{},"过":{"docs":{},"提":{"docs":{},"交":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}},"和":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"modules.html":{"ref":"modules.html","tf":0.016541353383458645},"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.00558659217877095},"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802},"api.html":{"ref":"api.html","tf":0.010101010101010102}},"单":{"docs":{},"纯":{"docs":{},"的":{"docs":{},"全":{"docs":{},"局":{"docs":{},"对":{"docs":{},"象":{"docs":{},"有":{"docs":{},"以":{"docs":{},"下":{"docs":{},"两":{"docs":{},"点":{"docs":{},"不":{"docs":{},"同":{"docs":{},"：":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}},"分":{"docs":{},"发":{"docs":{},"多":{"docs":{},"重":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"参":{"docs":{},"数":{"docs":{},"调":{"docs":{},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"模":{"docs":{},"块":{"docs":{},"，":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}},"经":{"docs":{},"过":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"将":{"docs":{},"会":{"docs":{},"更":{"docs":{},"深":{"docs":{},"入":{"docs":{},"地":{"docs":{},"探":{"docs":{},"讨":{"docs":{},"一":{"docs":{},"些":{"docs":{},"核":{"docs":{},"心":{"docs":{},"概":{"docs":{},"念":{"docs":{},"。":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"先":{"docs":{},"从":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}}}}}}}}}}}}}}}}}},"受":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"一":{"docs":{},"个":{"docs":{},"成":{"docs":{},"功":{"docs":{},"回":{"docs":{},"调":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"失":{"docs":{},"败":{"docs":{},"回":{"docs":{},"调":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}},"收":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"方":{"docs":{},"法":{"docs":{},"触":{"docs":{},"发":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"：":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},"注":{"docs":{},"册":{"docs":{},"模":{"docs":{},"块":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"可":{"docs":{},"以":{"docs":{},"有":{"docs":{},"更":{"docs":{},"多":{"docs":{},"选":{"docs":{},"项":{"docs":{},"来":{"docs":{},"完":{"docs":{},"成":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"任":{"docs":{},"务":{"docs":{},"）":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}},"接":{"docs":{},"受":{"docs":{},"以":{"docs":{},"下":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"，":{"docs":{},"当":{"docs":{},"值":{"docs":{},"改":{"docs":{},"变":{"docs":{},"时":{"docs":{},"调":{"docs":{},"用":{"docs":{},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}},"最":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}},"好":{"docs":{},"提":{"docs":{},"前":{"docs":{},"在":{"docs":{},"你":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}},"后":{"docs":{},"，":{"docs":{},"如":{"docs":{},"果":{"docs":{},"我":{"docs":{},"们":{"docs":{},"利":{"docs":{},"用":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}},"新":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"版":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"場":{"docs":{},"合":{"docs":{},"に":{"docs":{},"は":{"docs":{},"、":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}},"終":{"docs":{},"的":{"docs":{},"に":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}},"概":{"docs":{},"念":{"docs":{},"开":{"docs":{},"始":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}},"当":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"次":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"现":{"docs":{},"在":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}},"想":{"docs":{},"象":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"正":{"docs":{},"在":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}},"由":{"docs":{},"于":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}},"使":{"docs":{},"用":{"docs":{},"单":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{},"，":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"状":{"docs":{},"态":{"docs":{},"会":{"docs":{},"集":{"docs":{},"中":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"较":{"docs":{},"大":{"docs":{},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{},"当":{"docs":{},"应":{"docs":{},"用":{"docs":{},"变":{"docs":{},"得":{"docs":{},"非":{"docs":{},"常":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"时":{"docs":{},"，":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}},"从":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}},"中":{"docs":{},"展":{"docs":{},"示":{"docs":{},"状":{"docs":{},"态":{"docs":{},"呢":{"docs":{},"？":{"docs":{},"由":{"docs":{},"于":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}},"获":{"docs":{},"得":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}},"仍":{"docs":{},"然":{"docs":{},"保":{"docs":{},"有":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}},"也":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"更":{"docs":{},"新":{"docs":{},"。":{"docs":{},"这":{"docs":{},"也":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}},"内":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"绑":{"docs":{},"定":{"docs":{},"的":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"合":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"记":{"docs":{},"数":{"docs":{},"应":{"docs":{},"用":{"docs":{},"示":{"docs":{},"例":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}},"语":{"docs":{},"法":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"还":{"docs":{},"没":{"docs":{},"能":{"docs":{},"掌":{"docs":{},"握":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}}}}},"处":{"docs":{},"理":{"docs":{},"内":{"docs":{},"联":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"深":{"docs":{},"入":{"docs":{},"理":{"docs":{},"解":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"概":{"docs":{},"念":{"docs":{},"对":{"docs":{},"于":{"docs":{},"使":{"docs":{},"用":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}}}}}}}}}}}}}},"“":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"”":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}},"为":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"了":{"docs":{},"能":{"docs":{},"够":{"docs":{},"使":{"docs":{},"用":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}},"处":{"docs":{},"理":{"docs":{},"异":{"docs":{},"步":{"docs":{},"操":{"docs":{},"作":{"docs":{},"，":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"来":{"docs":{},"看":{"docs":{},"一":{"docs":{},"看":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}},"解":{"docs":{},"决":{"docs":{},"以":{"docs":{},"上":{"docs":{},"问":{"docs":{},"题":{"docs":{},"，":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"创":{"docs":{},"建":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"以":{"docs":{},"返":{"docs":{},"回":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}}}}}}}}}},"传":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"参":{"docs":{},"数":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}},"参":{"docs":{},"。":{"docs":{},"在":{"docs":{},"你":{"docs":{},"对":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}},"入":{"docs":{},"额":{"docs":{},"外":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"，":{"docs":{},"即":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"使":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"用":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"testing.html":{"ref":"testing.html","tf":0.00558659217877095},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}},"单":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{},"—":{"docs":{},"—":{"docs":{},"是":{"docs":{},"的":{"docs":{},"，":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"就":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"全":{"docs":{},"部":{"docs":{},"的":{"docs":{},"应":{"docs":{},"用":{"docs":{},"层":{"docs":{},"级":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"至":{"docs":{},"此":{"docs":{},"它":{"docs":{},"便":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"“":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"象":{"docs":{},"展":{"docs":{},"开":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"将":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}},"此":{"docs":{},"对":{"docs":{},"象":{"docs":{},"混":{"docs":{},"入":{"docs":{},"到":{"docs":{},"外":{"docs":{},"部":{"docs":{},"对":{"docs":{},"象":{"docs":{},"中":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}},"常":{"docs":{},"量":{"docs":{},"替":{"docs":{},"代":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154}}}}}}}},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"如":{"docs":{},"何":{"docs":{},"将":{"docs":{},"它":{"docs":{},"与":{"docs":{},"局":{"docs":{},"部":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"混":{"docs":{},"合":{"docs":{},"使":{"docs":{},"用":{"docs":{},"呢":{"docs":{},"？":{"docs":{},"通":{"docs":{},"常":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"工":{"docs":{},"具":{"docs":{},"函":{"docs":{},"数":{"docs":{},"将":{"docs":{},"多":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"合":{"docs":{},"并":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"，":{"docs":{},"以":{"docs":{},"使":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"最":{"docs":{},"终":{"docs":{},"对":{"docs":{},"象":{"docs":{},"传":{"docs":{},"给":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"，":{"docs":{},"因":{"docs":{},"此":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"，":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"所":{"docs":{},"有":{"docs":{},"触":{"docs":{},"发":{"docs":{},"函":{"docs":{},"数":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},"，":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"与":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"有":{"docs":{},"几":{"docs":{},"个":{"docs":{},"配":{"docs":{},"置":{"docs":{},"项":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}},"引":{"docs":{},"起":{"docs":{},"的":{"docs":{},"，":{"docs":{},"将":{"docs":{},"会":{"docs":{},"抛":{"docs":{},"出":{"docs":{},"错":{"docs":{},"误":{"docs":{},"。":{"docs":{},"这":{"docs":{},"能":{"docs":{},"保":{"docs":{},"证":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"都":{"docs":{},"能":{"docs":{},"被":{"docs":{},"调":{"docs":{},"试":{"docs":{},"工":{"docs":{},"具":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"到":{"docs":{},"。":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}},"：":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}},"之":{"docs":{},"后":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"基":{"docs":{},"于":{"docs":{},"某":{"docs":{},"个":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"对":{"docs":{},"象":{"docs":{},"，":{"docs":{},"对":{"docs":{},"象":{"docs":{},"里":{"docs":{},"有":{"docs":{},"新":{"docs":{},"的":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"在":{"docs":{},"给":{"docs":{},"定":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"值":{"docs":{},"上":{"docs":{},"的":{"docs":{},"组":{"docs":{},"件":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{},"组":{"docs":{},"件":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}},"多":{"docs":{},"个":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"以":{"docs":{},"下":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"模":{"docs":{},"块":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"组":{"docs":{},"件":{"docs":{},"方":{"docs":{},"法":{"docs":{},"分":{"docs":{},"发":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"提":{"docs":{},"交":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"单":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{},"和":{"docs":{},"模":{"docs":{},"块":{"docs":{},"化":{"docs":{},"并":{"docs":{},"不":{"docs":{},"冲":{"docs":{},"突":{"docs":{},"—":{"docs":{},"—":{"docs":{},"在":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"章":{"docs":{},"节":{"docs":{},"里":{"docs":{},"我":{"docs":{},"们":{"docs":{},"会":{"docs":{},"讨":{"docs":{},"论":{"docs":{},"如":{"docs":{},"何":{"docs":{},"将":{"docs":{},"状":{"docs":{},"态":{"docs":{},"和":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"事":{"docs":{},"件":{"docs":{},"分":{"docs":{},"布":{"docs":{},"到":{"docs":{},"各":{"docs":{},"个":{"docs":{},"子":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"变":{"docs":{},"化":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}},"更":{"docs":{},"状":{"docs":{},"态":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"单":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"能":{"docs":{},"够":{"docs":{},"直":{"docs":{},"接":{"docs":{},"地":{"docs":{},"定":{"docs":{},"位":{"docs":{},"任":{"docs":{},"一":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"片":{"docs":{},"段":{"docs":{},"，":{"docs":{},"在":{"docs":{},"调":{"docs":{},"试":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"也":{"docs":{},"能":{"docs":{},"轻":{"docs":{},"易":{"docs":{},"地":{"docs":{},"取":{"docs":{},"得":{"docs":{},"整":{"docs":{},"个":{"docs":{},"当":{"docs":{},"前":{"docs":{},"应":{"docs":{},"用":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"快":{"docs":{},"照":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"读":{"docs":{},"取":{"docs":{},"状":{"docs":{},"态":{"docs":{},"最":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"就":{"docs":{},"是":{"docs":{},"在":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"中":{"docs":{},"返":{"docs":{},"回":{"docs":{},"某":{"docs":{},"个":{"docs":{},"状":{"docs":{},"态":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"注":{"docs":{},"入":{"docs":{},"到":{"docs":{},"根":{"docs":{},"组":{"docs":{},"件":{"docs":{},"下":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"，":{"docs":{},"且":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"能":{"docs":{},"通":{"docs":{},"过":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"本":{"docs":{},"身":{"docs":{},"了":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"属":{"docs":{},"性":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"方":{"docs":{},"法":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"的":{"docs":{},"根":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"现":{"docs":{},"中":{"docs":{},"是":{"docs":{},"很":{"docs":{},"常":{"docs":{},"见":{"docs":{},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"这":{"docs":{},"样":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}},"，":{"docs":{},"默":{"docs":{},"认":{"docs":{},"为":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}},"践":{"docs":{},"中":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"会":{"docs":{},"经":{"docs":{},"常":{"docs":{},"用":{"docs":{},"到":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"际":{"docs":{},"上":{"docs":{},"这":{"docs":{},"和":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"但":{"docs":{},"是":{"docs":{},"自":{"docs":{},"从":{"docs":{},"有":{"docs":{},"了":{"docs":{},"对":{"docs":{},"象":{"docs":{},"展":{"docs":{},"开":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"（":{"docs":{},"现":{"docs":{},"处":{"docs":{},"于":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}},"另":{"docs":{},"取":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"，":{"docs":{},"使":{"docs":{},"用":{"docs":{},"对":{"docs":{},"象":{"docs":{},"形":{"docs":{},"式":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"不":{"docs":{},"会":{"docs":{},"对":{"docs":{},"其":{"docs":{},"产":{"docs":{},"生":{"docs":{},"影":{"docs":{},"响":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"以":{"docs":{},"访":{"docs":{},"问":{"docs":{},"根":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"后":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}},"并":{"docs":{},"不":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"放":{"docs":{},"入":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}},"限":{"docs":{},"制":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"结":{"docs":{},"构":{"docs":{},"。":{"docs":{},"但":{"docs":{},"是":{"docs":{},"，":{"docs":{},"它":{"docs":{},"规":{"docs":{},"定":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"需":{"docs":{},"要":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"的":{"docs":{},"规":{"docs":{},"则":{"docs":{},"：":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"且":{"docs":{},"观":{"docs":{},"察":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"把":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}},"当":{"docs":{},"前":{"docs":{},"购":{"docs":{},"物":{"docs":{},"车":{"docs":{},"的":{"docs":{},"物":{"docs":{},"品":{"docs":{},"备":{"docs":{},"份":{"docs":{},"起":{"docs":{},"来":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"字":{"docs":{},"添":{"docs":{},"加":{"docs":{},"到":{"docs":{},"插":{"docs":{},"件":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"（":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"）":{"docs":{},"中":{"docs":{},"去":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}},"上":{"docs":{},"述":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"然":{"docs":{},"而":{"docs":{},"，":{"docs":{},"这":{"docs":{},"种":{"docs":{},"模":{"docs":{},"式":{"docs":{},"导":{"docs":{},"致":{"docs":{},"组":{"docs":{},"件":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"全":{"docs":{},"局":{"docs":{},"状":{"docs":{},"态":{"docs":{},"单":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"模":{"docs":{},"块":{"docs":{},"化":{"docs":{},"的":{"docs":{},"构":{"docs":{},"建":{"docs":{},"系":{"docs":{},"统":{"docs":{},"中":{"docs":{},"，":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"返":{"docs":{},"回":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"像":{"docs":{},"这":{"docs":{},"样":{"docs":{},"使":{"docs":{},"用":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"：":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"状":{"docs":{},"态":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"態":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"私":{"docs":{},"達":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"を":{"docs":{},"動":{"docs":{},"か":{"docs":{},"す":{"docs":{},"信":{"docs":{},"頼":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"情":{"docs":{},"報":{"docs":{},"源":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}},"管":{"docs":{},"理":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}},"唯":{"docs":{},"一":{"docs":{},"の":{"docs":{},"方":{"docs":{},"法":{"docs":{},"は":{"docs":{},"、":{"docs":{},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"に":{"docs":{},"処":{"docs":{},"理":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"の":{"docs":{},"み":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"に":{"docs":{},"組":{"docs":{},"み":{"docs":{},"合":{"docs":{},"わ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"グ":{"docs":{},"ラ":{"docs":{},"ム":{"docs":{},"の":{"docs":{},"動":{"docs":{},"き":{"docs":{},"を":{"docs":{},"予":{"docs":{},"測":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"非":{"docs":{},"常":{"docs":{},"に":{"docs":{},"困":{"docs":{},"難":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"持":{"docs":{},"っ":{"docs":{},"た":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"撮":{"docs":{},"る":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"の":{"docs":{},"間":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"使":{"docs":{},"わ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"api.html":{"ref":"api.html","tf":0.022727272727272728}}}},"待":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"等":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"箭":{"docs":{},"头":{"docs":{},"函":{"docs":{},"数":{"docs":{},"可":{"docs":{},"使":{"docs":{},"代":{"docs":{},"码":{"docs":{},"更":{"docs":{},"简":{"docs":{},"练":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"获":{"docs":{},"取":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"必":{"docs":{},"须":{"docs":{},"使":{"docs":{},"用":{"docs":{},"常":{"docs":{},"规":{"docs":{},"函":{"docs":{},"数":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}},"更":{"docs":{},"新":{"docs":{},"后":{"docs":{},"的":{"docs":{},"模":{"docs":{},"块":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}},"访":{"docs":{},"问":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"到":{"docs":{},"。":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"更":{"docs":{},"新":{"docs":{},"下":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"辅":{"docs":{},"助":{"docs":{},"函":{"docs":{},"数":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695}},"帮":{"docs":{},"助":{"docs":{},"我":{"docs":{},"们":{"docs":{},"生":{"docs":{},"成":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"，":{"docs":{},"让":{"docs":{},"你":{"docs":{},"少":{"docs":{},"按":{"docs":{},"几":{"docs":{},"次":{"docs":{},"键":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"将":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}},"将":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"的":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}},"选":{"docs":{},"项":{"docs":{},"，":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"种":{"docs":{},"机":{"docs":{},"制":{"docs":{},"将":{"docs":{},"状":{"docs":{},"态":{"docs":{},"从":{"docs":{},"根":{"docs":{},"组":{"docs":{},"件":{"docs":{},"“":{"docs":{},"注":{"docs":{},"入":{"docs":{},"”":{"docs":{},"到":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"（":{"docs":{},"需":{"docs":{},"调":{"docs":{},"用":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"该":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"这":{"docs":{},"可":{"docs":{},"以":{"docs":{},"把":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}},"个":{"docs":{},"选":{"docs":{},"项":{"docs":{},"暴":{"docs":{},"露":{"docs":{},"出":{"docs":{},"每":{"docs":{},"次":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"将":{"docs":{},"其":{"docs":{},"归":{"docs":{},"档":{"docs":{},"：":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"。":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"使":{"docs":{},"用":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}},"通":{"docs":{},"过":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"在":{"docs":{},"根":{"docs":{},"实":{"docs":{},"例":{"docs":{},"中":{"docs":{},"注":{"docs":{},"册":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}},"插":{"docs":{},"件":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"对":{"docs":{},"象":{"docs":{},"得":{"docs":{},"到":{"docs":{},"空":{"docs":{},"间":{"docs":{},"名":{"docs":{},"称":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}},"提":{"docs":{},"交":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}},"常":{"docs":{},"是":{"docs":{},"异":{"docs":{},"步":{"docs":{},"的":{"docs":{},"，":{"docs":{},"那":{"docs":{},"么":{"docs":{},"如":{"docs":{},"何":{"docs":{},"知":{"docs":{},"道":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"插":{"docs":{},"件":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"、":{"docs":{},"最":{"docs":{},"終":{"docs":{},"的":{"docs":{},"に":{"docs":{},"ひ":{"docs":{},"と":{"docs":{},"つ":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}},"那":{"docs":{},"么":{"docs":{},"我":{"docs":{},"们":{"docs":{},"如":{"docs":{},"何":{"docs":{},"在":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}},"都":{"docs":{},"会":{"docs":{},"重":{"docs":{},"新":{"docs":{},"求":{"docs":{},"取":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"触":{"docs":{},"发":{"docs":{},"更":{"docs":{},"新":{"docs":{},"相":{"docs":{},"关":{"docs":{},"联":{"docs":{},"的":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"根":{"docs":{},"据":{"docs":{},"模":{"docs":{},"块":{"docs":{},"注":{"docs":{},"册":{"docs":{},"的":{"docs":{},"路":{"docs":{},"径":{"docs":{},"调":{"docs":{},"整":{"docs":{},"命":{"docs":{},"名":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}},"抛":{"docs":{},"出":{"docs":{},"错":{"docs":{},"误":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"是":{"docs":{},"同":{"docs":{},"步":{"docs":{},"事":{"docs":{},"务":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"捕":{"docs":{},"捉":{"docs":{},"到":{"docs":{},"前":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"和":{"docs":{},"后":{"docs":{},"一":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"快":{"docs":{},"照":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},"，":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"阶":{"docs":{},"段":{"docs":{},"）":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"极":{"docs":{},"大":{"docs":{},"地":{"docs":{},"简":{"docs":{},"化":{"docs":{},"写":{"docs":{},"法":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}}}}}}},"作":{"docs":{},"为":{"docs":{},"其":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"。":{"docs":{},"最":{"docs":{},"后":{"docs":{},"接":{"docs":{},"收":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"参":{"docs":{},"数":{"docs":{},"表":{"docs":{},"示":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}},"（":{"docs":{},"可":{"docs":{},"选":{"docs":{},"）":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},"（":{"docs":{},"如":{"docs":{},"果":{"docs":{},"定":{"docs":{},"义":{"docs":{},"在":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"，":{"docs":{},"则":{"docs":{},"为":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"）":{"docs":{},"，":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"，":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"其":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"三":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"给":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"唯":{"docs":{},"一":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"，":{"docs":{},"可":{"docs":{},"以":{"docs":{},"监":{"docs":{},"听":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"命":{"docs":{},"名":{"docs":{},"输":{"docs":{},"出":{"docs":{},"对":{"docs":{},"象":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"出":{"docs":{},"响":{"docs":{},"应":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"允":{"docs":{},"许":{"docs":{},"我":{"docs":{},"们":{"docs":{},"在":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"将":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"很":{"docs":{},"容":{"docs":{},"易":{"docs":{},"地":{"docs":{},"在":{"docs":{},"任":{"docs":{},"何":{"docs":{},"组":{"docs":{},"件":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"它":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"按":{"docs":{},"任":{"docs":{},"意":{"docs":{},"方":{"docs":{},"式":{"docs":{},"格":{"docs":{},"式":{"docs":{},"化":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"组":{"docs":{},"装":{"docs":{},"模":{"docs":{},"块":{"docs":{},"并":{"docs":{},"导":{"docs":{},"出":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}},"主":{"docs":{},"要":{"docs":{},"想":{"docs":{},"针":{"docs":{},"对":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"有":{"docs":{},"时":{"docs":{},"候":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"从":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}},"插":{"docs":{},"件":{"docs":{},"需":{"docs":{},"要":{"docs":{},"获":{"docs":{},"得":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"“":{"docs":{},"快":{"docs":{},"照":{"docs":{},"”":{"docs":{},"，":{"docs":{},"比":{"docs":{},"较":{"docs":{},"改":{"docs":{},"变":{"docs":{},"的":{"docs":{},"前":{"docs":{},"后":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"想":{"docs":{},"要":{"docs":{},"实":{"docs":{},"现":{"docs":{},"这":{"docs":{},"项":{"docs":{},"功":{"docs":{},"能":{"docs":{},"，":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"对":{"docs":{},"状":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"进":{"docs":{},"行":{"docs":{},"深":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"：":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"能":{"docs":{},"需":{"docs":{},"要":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"多":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"，":{"docs":{},"例":{"docs":{},"如":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}},"混":{"docs":{},"入":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"，":{"docs":{},"来":{"docs":{},"实":{"docs":{},"现":{"docs":{},"给":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"我":{"docs":{},"们":{"docs":{},"注":{"docs":{},"入":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"的":{"docs":{},"是":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"里":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"进":{"docs":{},"行":{"docs":{},"查":{"docs":{},"询":{"docs":{},"时":{"docs":{},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}},"面":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}},"可":{"docs":{},"以":{"docs":{},"有":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}},"一":{"docs":{},"个":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"数":{"docs":{},"组":{"docs":{},"，":{"docs":{},"包":{"docs":{},"含":{"docs":{},"应":{"docs":{},"用":{"docs":{},"在":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"条":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"原":{"docs":{},"则":{"docs":{},"就":{"docs":{},"是":{"docs":{},"要":{"docs":{},"记":{"docs":{},"住":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}},"样":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"一":{"docs":{},"些":{"docs":{},"注":{"docs":{},"意":{"docs":{},"事":{"docs":{},"项":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"直":{"docs":{},"截":{"docs":{},"了":{"docs":{},"当":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"目":{"docs":{},"了":{"docs":{},"然":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"つ":{"docs":{},"目":{"docs":{},"は":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}},"連":{"docs":{},"の":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"の":{"docs":{},"処":{"docs":{},"理":{"docs":{},"を":{"docs":{},"実":{"docs":{},"行":{"docs":{},"し":{"docs":{},"つ":{"docs":{},"つ":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"み":{"docs":{},"副":{"docs":{},"作":{"docs":{},"用":{"docs":{},"（":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"）":{"docs":{},"を":{"docs":{},"与":{"docs":{},"え":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"注":{"docs":{},"意":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"下":{"docs":{},"一":{"docs":{},"步":{"docs":{},"：":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"面":{"docs":{},"是":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},"一":{"docs":{},"个":{"docs":{},"测":{"docs":{},"试":{"docs":{},"异":{"docs":{},"步":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"用":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"不":{"docs":{},"知":{"docs":{},"道":{"docs":{},"什":{"docs":{},"么":{"docs":{},"时":{"docs":{},"候":{"docs":{},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"—":{"docs":{},"—":{"docs":{},"实":{"docs":{},"质":{"docs":{},"上":{"docs":{},"任":{"docs":{},"何":{"docs":{},"在":{"docs":{},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"进":{"docs":{},"行":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"改":{"docs":{},"变":{"docs":{},"都":{"docs":{},"是":{"docs":{},"不":{"docs":{},"可":{"docs":{},"追":{"docs":{},"踪":{"docs":{},"的":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"要":{"docs":{},"在":{"docs":{},"发":{"docs":{},"布":{"docs":{},"环":{"docs":{},"境":{"docs":{},"下":{"docs":{},"启":{"docs":{},"用":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"！":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"会":{"docs":{},"深":{"docs":{},"度":{"docs":{},"监":{"docs":{},"测":{"docs":{},"状":{"docs":{},"态":{"docs":{},"树":{"docs":{},"来":{"docs":{},"检":{"docs":{},"测":{"docs":{},"不":{"docs":{},"合":{"docs":{},"规":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"—":{"docs":{},"—":{"docs":{},"请":{"docs":{},"确":{"docs":{},"保":{"docs":{},"在":{"docs":{},"发":{"docs":{},"布":{"docs":{},"环":{"docs":{},"境":{"docs":{},"下":{"docs":{},"关":{"docs":{},"闭":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"，":{"docs":{},"以":{"docs":{},"避":{"docs":{},"免":{"docs":{},"性":{"docs":{},"能":{"docs":{},"损":{"docs":{},"失":{"docs":{},"。":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"事":{"docs":{},"件":{"docs":{},"类":{"docs":{},"型":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154}},"在":{"docs":{},"各":{"docs":{},"种":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}},"，":{"docs":{},"在":{"docs":{},"事":{"docs":{},"件":{"docs":{},"回":{"docs":{},"调":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}},"任":{"docs":{},"何":{"docs":{},"由":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"意":{"docs":{},"の":{"docs":{},"方":{"docs":{},"法":{"docs":{},"で":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"フ":{"docs":{},"ォ":{"docs":{},"ー":{"docs":{},"マ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"保":{"docs":{},"持":{"docs":{},"不":{"docs":{},"变":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"存":{"docs":{},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"用":{"docs":{},"于":{"docs":{},"下":{"docs":{},"一":{"docs":{},"次":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"的":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},"很":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"过":{"docs":{},"程":{"docs":{},"，":{"docs":{},"很":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"测":{"docs":{},"试":{"docs":{},"它":{"docs":{},"们":{"docs":{},"。":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"docs":{},"子":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"对":{"docs":{},"象":{"docs":{},"，":{"docs":{},"会":{"docs":{},"被":{"docs":{},"合":{"docs":{},"并":{"docs":{},"到":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"导":{"docs":{},"致":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"都":{"docs":{},"应":{"docs":{},"该":{"docs":{},"在":{"docs":{},"此":{"docs":{},"刻":{"docs":{},"完":{"docs":{},"成":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"同":{"docs":{},"步":{"docs":{},"函":{"docs":{},"数":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},"。":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"？":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}},"同":{"docs":{},"步":{"docs":{},"执":{"docs":{},"行":{"docs":{},"这":{"docs":{},"个":{"docs":{},"限":{"docs":{},"制":{"docs":{},"么":{"docs":{},"？":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}},"承":{"docs":{},"认":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"做":{"docs":{},"比":{"docs":{},"简":{"docs":{},"单":{"docs":{},"地":{"docs":{},"使":{"docs":{},"用":{"docs":{},"“":{"docs":{},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}},"或":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"者":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},"是":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"提":{"docs":{},"交":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"模":{"docs":{},"块":{"docs":{},"间":{"docs":{},"数":{"docs":{},"据":{"docs":{},"互":{"docs":{},"相":{"docs":{},"污":{"docs":{},"染":{"docs":{},"的":{"docs":{},"问":{"docs":{},"题":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}},"既":{"docs":{},"然":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"日":{"docs":{},"志":{"docs":{},"。":{"docs":{},"每":{"docs":{},"一":{"docs":{},"条":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}},"插":{"docs":{},"件":{"docs":{},"还":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"通":{"docs":{},"过":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"被":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"记":{"docs":{},"录":{"docs":{},"，":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}},"局":{"docs":{},"部":{"docs":{},"化":{"docs":{},"了":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"触":{"docs":{},"发":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"，":{"docs":{},"回":{"docs":{},"调":{"docs":{},"函":{"docs":{},"数":{"docs":{},"还":{"docs":{},"没":{"docs":{},"有":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"，":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}}},"载":{"docs":{},"荷":{"docs":{},"（":{"docs":{},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"）":{"docs":{},"：":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}},"需":{"docs":{},"遵":{"docs":{},"守":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"要":{"docs":{},"被":{"docs":{},"记":{"docs":{},"录":{"docs":{},"，":{"docs":{},"就":{"docs":{},"让":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"非":{"docs":{},"常":{"docs":{},"类":{"docs":{},"似":{"docs":{},"于":{"docs":{},"事":{"docs":{},"件":{"docs":{},"：":{"docs":{},"每":{"docs":{},"个":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"な":{"docs":{},"命":{"docs":{},"令":{"docs":{},"を":{"docs":{},"扱":{"docs":{},"う":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"見":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ジ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"は":{"docs":{},"カ":{"docs":{},"プ":{"docs":{},"セ":{"docs":{},"ル":{"docs":{},"化":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"構":{"docs":{},"成":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"な":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"例":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"风":{"docs":{},"格":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"命":{"docs":{},"名":{"docs":{},"功":{"docs":{},"能":{"docs":{},"来":{"docs":{},"使":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"作":{"docs":{},"为":{"docs":{},"函":{"docs":{},"数":{"docs":{},"名":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}}}},"乍":{"docs":{},"一":{"docs":{},"眼":{"docs":{},"看":{"docs":{},"上":{"docs":{},"去":{"docs":{},"感":{"docs":{},"觉":{"docs":{},"多":{"docs":{},"此":{"docs":{},"一":{"docs":{},"举":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"直":{"docs":{},"接":{"docs":{},"分":{"docs":{},"发":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}},"产":{"docs":{},"生":{"docs":{},"的":{"docs":{},"副":{"docs":{},"作":{"docs":{},"用":{"docs":{},"（":{"docs":{},"即":{"docs":{},"状":{"docs":{},"态":{"docs":{},"变":{"docs":{},"更":{"docs":{},"）":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}},"品":{"docs":{},"模":{"docs":{},"块":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}},"仍":{"docs":{},"旧":{"docs":{},"返":{"docs":{},"回":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}},"假":{"docs":{},"设":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"这":{"docs":{},"里":{"docs":{},"的":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}},"内":{"docs":{},"部":{"docs":{},"执":{"docs":{},"行":{"docs":{},"异":{"docs":{},"步":{"docs":{},"操":{"docs":{},"作":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}},"置":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"の":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"方":{"docs":{},"法":{"docs":{},"を":{"docs":{},"参":{"docs":{},"考":{"docs":{},"に":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}},"参":{"docs":{},"数":{"docs":{},"解":{"docs":{},"构":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"考":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"热":{"docs":{},"重":{"docs":{},"载":{"docs":{},"示":{"docs":{},"例":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}},"发":{"docs":{},"出":{"docs":{},"结":{"docs":{},"账":{"docs":{},"请":{"docs":{},"求":{"docs":{},"，":{"docs":{},"然":{"docs":{},"后":{"docs":{},"乐":{"docs":{},"观":{"docs":{},"地":{"docs":{},"清":{"docs":{},"空":{"docs":{},"购":{"docs":{},"物":{"docs":{},"车":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}},"失":{"docs":{},"败":{"docs":{},"操":{"docs":{},"作":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"敗":{"docs":{},"時":{"docs":{},"の":{"docs":{},"処":{"docs":{},"理":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}},"完":{"docs":{},"成":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"后":{"docs":{},"调":{"docs":{},"用":{"docs":{},"，":{"docs":{},"接":{"docs":{},"收":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"全":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"は":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}},"岂":{"docs":{},"不":{"docs":{},"更":{"docs":{},"方":{"docs":{},"便":{"docs":{},"？":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"并":{"docs":{},"非":{"docs":{},"如":{"docs":{},"此":{"docs":{},"，":{"docs":{},"还":{"docs":{},"记":{"docs":{},"得":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}},"很":{"docs":{},"多":{"docs":{},"次":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"）":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}},"容":{"docs":{},"易":{"docs":{},"被":{"docs":{},"测":{"docs":{},"试":{"docs":{},"，":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"一":{"docs":{},"些":{"docs":{},"完":{"docs":{},"全":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"这":{"docs":{},"里":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"小":{"docs":{},"技":{"docs":{},"巧":{"docs":{},"，":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"在":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"成":{"docs":{},"功":{"docs":{},"操":{"docs":{},"作":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"時":{"docs":{},"の":{"docs":{},"処":{"docs":{},"理":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}},"为":{"docs":{},"可":{"docs":{},"热":{"docs":{},"重":{"docs":{},"载":{"docs":{},"模":{"docs":{},"块":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}},"才":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"支":{"docs":{},"持":{"docs":{},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},"载":{"docs":{},"荷":{"docs":{},"方":{"docs":{},"式":{"docs":{},"和":{"docs":{},"对":{"docs":{},"象":{"docs":{},"方":{"docs":{},"式":{"docs":{},"进":{"docs":{},"行":{"docs":{},"分":{"docs":{},"发":{"docs":{},"：":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}},"）":{"docs":{},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"热":{"docs":{},"重":{"docs":{},"载":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}},"类":{"docs":{},"似":{"docs":{},"于":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"插":{"docs":{},"件":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"让":{"docs":{},"构":{"docs":{},"建":{"docs":{},"工":{"docs":{},"具":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"：":{"docs":{"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}}}}}},"型":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.022727272727272728}}}}},"购":{"docs":{},"物":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"车":{"docs":{},"模":{"docs":{},"块":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}},"首":{"docs":{},"先":{"docs":{},"，":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"明":{"docs":{},"白":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}},"他":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"の":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"異":{"docs":{},"な":{"docs":{},"る":{"docs":{},"の":{"docs":{},"は":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}},"即":{"docs":{},"可":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"及":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"同":{"docs":{},"样":{"docs":{},"，":{"docs":{},"对":{"docs":{},"于":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"指":{"docs":{},"向":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"じ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"に":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"複":{"docs":{},"数":{"docs":{},"回":{"docs":{},"登":{"docs":{},"録":{"docs":{},"す":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"す":{"docs":{},"る":{"docs":{},";":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}},"様":{"docs":{},"に":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"中":{"docs":{},"で":{"docs":{},"は":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"启":{"docs":{},"用":{"docs":{},"了":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"嵌":{"docs":{},"套":{"docs":{},"模":{"docs":{},"块":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"带":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"函":{"docs":{},"数":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"暴":{"docs":{},"露":{"docs":{},"出":{"docs":{},"来":{"docs":{},"，":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"状":{"docs":{},"态":{"docs":{},"则":{"docs":{},"为":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"注":{"docs":{},"册":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"为":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"容":{"docs":{},"（":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"已":{"docs":{},"经":{"docs":{},"是":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"的":{"docs":{},"了":{"docs":{},"，":{"docs":{},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}},"动":{"docs":{},"态":{"docs":{},"注":{"docs":{},"册":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},"功":{"docs":{},"能":{"docs":{},"使":{"docs":{},"得":{"docs":{},"其":{"docs":{},"他":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"重":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"功":{"docs":{},"能":{"docs":{},"默":{"docs":{},"认":{"docs":{},"输":{"docs":{},"出":{"docs":{},"了":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"拟":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"提":{"docs":{},"交":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"状":{"docs":{},"态":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}},"管":{"docs":{},"理":{"docs":{},"状":{"docs":{},"态":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}},"结":{"docs":{},"合":{"docs":{},"在":{"docs":{},"一":{"docs":{},"起":{"docs":{},"，":{"docs":{},"实":{"docs":{},"现":{"docs":{},"应":{"docs":{},"用":{"docs":{},"的":{"docs":{},"路":{"docs":{},"由":{"docs":{},"状":{"docs":{},"态":{"docs":{},"管":{"docs":{},"理":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}},"给":{"docs":{},"插":{"docs":{},"件":{"docs":{},"开":{"docs":{},"发":{"docs":{},"者":{"docs":{},"的":{"docs":{},"注":{"docs":{},"意":{"docs":{},"事":{"docs":{},"项":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"继":{"docs":{},"承":{"docs":{},"父":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"而":{"docs":{},"且":{"docs":{},"，":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"使":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"若":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"全":{"docs":{},"局":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"内":{"docs":{},"分":{"docs":{},"发":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}},"进":{"docs":{},"一":{"docs":{},"步":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}},"行":{"docs":{},"单":{"docs":{},"元":{"docs":{},"测":{"docs":{},"试":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"入":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"，":{"docs":{},"在":{"docs":{},"严":{"docs":{},"格":{"docs":{},"模":{"docs":{},"式":{"docs":{},"下":{"docs":{},"，":{"docs":{},"任":{"docs":{},"何":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"，":{"docs":{},"模":{"docs":{},"块":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"值":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"只":{"docs":{},"要":{"docs":{},"你":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"以":{"docs":{},"上":{"docs":{},"规":{"docs":{},"则":{"docs":{},"，":{"docs":{},"如":{"docs":{},"何":{"docs":{},"组":{"docs":{},"织":{"docs":{},"代":{"docs":{},"码":{"docs":{},"随":{"docs":{},"你":{"docs":{},"便":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"的":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"接":{"docs":{},"收":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"异":{"docs":{},"步":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"都":{"docs":{},"应":{"docs":{},"该":{"docs":{},"封":{"docs":{},"装":{"docs":{},"到":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}},"抽":{"docs":{},"取":{"docs":{},"出":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"请":{"docs":{},"求":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}},"根":{"docs":{},"级":{"docs":{},"别":{"docs":{},"的":{"docs":{"structure.html":{"ref":"structure.html","tf":0.02857142857142857}}}}},"状":{"docs":{},"态":{"docs":{},"，":{"docs":{},"只":{"docs":{},"读":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"相":{"docs":{},"关":{"docs":{},"代":{"docs":{},"码":{"docs":{},"分":{"docs":{},"割":{"docs":{},"到":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"。":{"docs":{},"下":{"docs":{},"面":{"docs":{},"是":{"docs":{},"项":{"docs":{},"目":{"docs":{},"结":{"docs":{},"构":{"docs":{},"示":{"docs":{},"例":{"docs":{},"：":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}}}}}}}}}}}}}},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"购":{"docs":{},"物":{"docs":{},"车":{"docs":{},"示":{"docs":{},"例":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}}}}}},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"只":{"docs":{},"返":{"docs":{},"回":{"docs":{},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{},"子":{"docs":{},"树":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}},"え":{"docs":{},"ば":{"docs":{},"項":{"docs":{},"目":{"docs":{},"の":{"docs":{},"リ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"フ":{"docs":{},"ィ":{"docs":{},"ル":{"docs":{},"タ":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"し":{"docs":{},"た":{"docs":{},"り":{"docs":{},"カ":{"docs":{},"ウ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"算":{"docs":{},"出":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"と":{"docs":{},"き":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"サ":{"docs":{},"ブ":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"み":{"docs":{},"を":{"docs":{},"返":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"后":{"docs":{},"调":{"docs":{},"用":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"快":{"docs":{},"照":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"按":{"docs":{},"照":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"到":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}},"格":{"docs":{},"式":{"docs":{},"记":{"docs":{},"录":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}},"比":{"docs":{},"较":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}},"生":{"docs":{},"成":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"状":{"docs":{},"态":{"docs":{},"快":{"docs":{},"照":{"docs":{},"的":{"docs":{},"插":{"docs":{},"件":{"docs":{},"应":{"docs":{},"该":{"docs":{},"只":{"docs":{},"在":{"docs":{},"开":{"docs":{},"发":{"docs":{},"阶":{"docs":{},"段":{"docs":{},"使":{"docs":{},"用":{"docs":{},"，":{"docs":{},"使":{"docs":{},"用":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}}}}},"要":{"docs":{},"注":{"docs":{},"意":{"docs":{},"，":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}},"停":{"docs":{},"止":{"docs":{},"监":{"docs":{},"测":{"docs":{},"，":{"docs":{},"直":{"docs":{},"接":{"docs":{},"调":{"docs":{},"用":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"处":{"docs":{},"理":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}},"顺":{"docs":{},"便":{"docs":{},"，":{"docs":{},"`":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}},"双":{"docs":{},"向":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}},"方":{"docs":{},"向":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}},"局":{"docs":{},"部":{"docs":{},"状":{"docs":{},"态":{"docs":{},"”":{"docs":{},"要":{"docs":{},"啰":{"docs":{},"嗦":{"docs":{},"得":{"docs":{},"多":{"docs":{},"，":{"docs":{},"并":{"docs":{},"且":{"docs":{},"也":{"docs":{},"损":{"docs":{},"失":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}}}}}}}}}}}}},"取":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"名":{"docs":{},"然":{"docs":{},"后":{"docs":{},"把":{"docs":{},"它":{"docs":{},"输":{"docs":{},"出":{"docs":{},"去":{"docs":{},"：":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}},"处":{"docs":{},"理":{"docs":{},"之":{"docs":{},"后":{"docs":{},"这":{"docs":{},"些":{"docs":{},"测":{"docs":{},"试":{"docs":{},"应":{"docs":{},"该":{"docs":{},"不":{"docs":{},"依":{"docs":{},"赖":{"docs":{},"任":{"docs":{},"何":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"以":{"docs":{},"外":{"docs":{},"修":{"docs":{},"改":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"器":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"打":{"docs":{},"包":{"docs":{},"测":{"docs":{},"试":{"docs":{},"文":{"docs":{},"件":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"这":{"docs":{},"些":{"docs":{},"测":{"docs":{},"试":{"docs":{},"文":{"docs":{},"件":{"docs":{},"然":{"docs":{},"后":{"docs":{},"在":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}},"执":{"docs":{},"行":{"docs":{},"测":{"docs":{},"试":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"改":{"docs":{},"成":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"断":{"docs":{},"言":{"docs":{},"结":{"docs":{},"果":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}},"服":{"docs":{},"务":{"docs":{},"回":{"docs":{},"应":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"层":{"docs":{},"—":{"docs":{},"—":{"docs":{},"例":{"docs":{},"如":{"docs":{},"，":{"docs":{},"我":{"docs":{},"们":{"docs":{},"可":{"docs":{},"以":{"docs":{},"把":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"没":{"docs":{},"有":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"编":{"docs":{},"写":{"docs":{},"正":{"docs":{},"确":{"docs":{},"，":{"docs":{},"经":{"docs":{},"过":{"docs":{},"合":{"docs":{},"理":{"docs":{},"地":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}},"解":{"docs":{},"构":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"详":{"docs":{},"见":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.015151515151515152}}}}}},"配":{"docs":{},"置":{"docs":{},"中":{"docs":{},"的":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"（":{"docs":{},"配":{"docs":{},"置":{"docs":{},"好":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"加":{"docs":{},"载":{"docs":{},"新":{"docs":{},"模":{"docs":{},"块":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}},"与":{"docs":{},"根":{"docs":{},"模":{"docs":{},"块":{"docs":{},"的":{"docs":{},"选":{"docs":{},"项":{"docs":{},"一":{"docs":{},"样":{"docs":{},"，":{"docs":{},"每":{"docs":{},"个":{"docs":{},"模":{"docs":{},"块":{"docs":{},"也":{"docs":{},"包":{"docs":{},"含":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"联":{"docs":{},"到":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"卸":{"docs":{},"载":{"docs":{},"一":{"docs":{},"个":{"docs":{},"动":{"docs":{},"态":{"docs":{},"模":{"docs":{},"块":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}},"后":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"：":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"响":{"docs":{},"应":{"docs":{},"式":{"docs":{},"地":{"docs":{},"监":{"docs":{},"测":{"docs":{},"一":{"docs":{},"个":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"所":{"docs":{},"有":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"描":{"docs":{},"述":{"docs":{},"和":{"docs":{},"当":{"docs":{},"前":{"docs":{},"的":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"新":{"docs":{},"增":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"し":{"docs":{},"い":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"追":{"docs":{},"加":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"以":{"docs":{},"下":{"docs":{},"の":{"docs":{},"い":{"docs":{},"ず":{"docs":{},"れ":{"docs":{},"か":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"ス":{"docs":{},"ワ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}},"を":{"docs":{},"ホ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"ワ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"替":{"docs":{},"换":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"选":{"docs":{},"项":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"某":{"docs":{},"些":{"docs":{},"观":{"docs":{},"察":{"docs":{},"者":{"docs":{},"）":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"第":{"1":{"docs":{},"引":{"docs":{},"数":{"docs":{},"は":{"docs":{},"、":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"文":{"docs":{},"字":{"docs":{},"列":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.012658227848101266}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"，":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"命":{"docs":{},"名":{"docs":{},"空":{"docs":{},"间":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.010101010101010102}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"订":{"docs":{},"阅":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"该":{"docs":{},"功":{"docs":{},"能":{"docs":{},"常":{"docs":{},"用":{"docs":{},"于":{"docs":{},"插":{"docs":{},"件":{"docs":{},"。":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}},"（":{"docs":{},"用":{"docs":{},"于":{"docs":{},"内":{"docs":{},"部":{"docs":{},"数":{"docs":{},"据":{"docs":{},"，":{"docs":{},"例":{"docs":{},"如":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}},"à":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.014469453376205787},"getting-started.html":{"ref":"getting-started.html","tf":0.013333333333333334},"state.html":{"ref":"state.html","tf":0.0169971671388102},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.014722536806342015},"actions.html":{"ref":"actions.html","tf":0.012875536480686695},"modules.html":{"ref":"modules.html","tf":0.008076358296622614},"structure.html":{"ref":"structure.html","tf":0.03608247422680412},"plugins.html":{"ref":"plugins.html","tf":0.005504587155963303},"forms.html":{"ref":"forms.html","tf":0.014423076923076924},"testing.html":{"ref":"testing.html","tf":0.0036855036855036856},"hot-reload.html":{"ref":"hot-reload.html","tf":3.3752495009980037},"api.html":{"ref":"api.html","tf":0.012145748987854251}}},"é":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.020833333333333332},"intro.html":{"ref":"intro.html","tf":0.00482315112540193},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"core-concepts.html":{"ref":"core-concepts.html","tf":0.02702702702702703},"state.html":{"ref":"state.html","tf":10.004249291784703},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"modules.html":{"ref":"modules.html","tf":0.002936857562408223},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}},"p":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}},"é":{"docs":{"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}},"r":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}},"t":{"docs":{},"e":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0012285012285012285}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0010121457489878543}}}}}}}},"g":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00424929178470255},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"actions.html":{"ref":"actions.html","tf":0.005722460658082976},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"testing.html":{"ref":"testing.html","tf":0.002457002457002457},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809},"api.html":{"ref":"api.html","tf":0.0010121457489878543}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558}}}}}}}}}}},"v":{"docs":{},"è":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0022650056625141564}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0007342143906020558},"strict.html":{"ref":"strict.html","tf":0.007352941176470588}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}}}}}}},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}},"«":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006430868167202572},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.00424929178470255},"mutations.html":{"ref":"mutations.html","tf":0.004530011325028313},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},"г":{"docs":{},"е":{"docs":{},"т":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"»":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}},"»":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"state.html":{"ref":"state.html","tf":0.0028328611898017},"mutations.html":{"ref":"mutations.html","tf":0.0033975084937712344},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},")":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286},"getting-started.html":{"ref":"getting-started.html","tf":0.005333333333333333},"getters.html":{"ref":"getters.html","tf":0.00273224043715847},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782},"actions.html":{"ref":"actions.html","tf":0.002861230329041488},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.003215434083601286}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0011325028312570782}}}},"ç":{"docs":{},"a":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.00141643059490085}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.001834862385321101}}}}},"ê":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.001607717041800643},"state.html":{"ref":"state.html","tf":0.00141643059490085},"mutations.html":{"ref":"mutations.html","tf":0.0056625141562853904},"actions.html":{"ref":"actions.html","tf":0.001430615164520744},"modules.html":{"ref":"modules.html","tf":0.0014684287812041115},"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"strict.html":{"ref":"strict.html","tf":0.007352941176470588},"forms.html":{"ref":"forms.html","tf":0.004807692307692308},"testing.html":{"ref":"testing.html","tf":0.0012285012285012285},"api.html":{"ref":"api.html","tf":0.004048582995951417}}}},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0026666666666666666}}}}},"œ":{"docs":{},"i":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.005154639175257732},"hot-reload.html":{"ref":"hot-reload.html","tf":0.005988023952095809}}}}},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02654867256637168},"intro.html":{"ref":"intro.html","tf":0.022774327122153208},"getting-started.html":{"ref":"getting-started.html","tf":0.018050541516245487},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.025974025974025976},"getters.html":{"ref":"getters.html","tf":0.02531645569620253},"mutations.html":{"ref":"mutations.html","tf":0.028528528528528527},"actions.html":{"ref":"actions.html","tf":0.020654044750430294},"modules.html":{"ref":"modules.html","tf":0.02159468438538206},"structure.html":{"ref":"structure.html","tf":0.025974025974025976},"plugins.html":{"ref":"plugins.html","tf":0.0200445434298441},"strict.html":{"ref":"strict.html","tf":0.04065040650406504},"forms.html":{"ref":"forms.html","tf":0.032432432432432434},"testing.html":{"ref":"testing.html","tf":0.018055555555555554},"hot-reload.html":{"ref":"hot-reload.html","tf":0.02112676056338028},"api.html":{"ref":"api.html","tf":0.022304832713754646}},"е":{"docs":{},"р":{"docs":{},"с":{"docs":{},"и":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"н":{"docs":{},"у":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"с":{"docs":{},"ь":{"docs":{},"м":{"docs":{},"а":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"б":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"р":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"\"":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"я":{"docs":{},"!":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"с":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0055658627087198514}}}},"п":{"docs":{},"о":{"docs":{},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"а":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"ы":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"х":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}},"у":{"docs":{},"ю":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}}}}},"ё":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}},"ы":{"docs":{"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"getters.html":{"ref":"getters.html","tf":0.012658227848101266},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.009136212624584718},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.005555555555555556},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"ш":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0075075075075075074},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"е":{"docs":{},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"ы":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"я":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"в":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"н":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"о":{"docs":{},"в":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"у":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"н":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"о":{"docs":{},"с":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}},"ч":{"docs":{},"и":{"docs":{},"с":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"getters.html":{"ref":"getters.html","tf":0.00949367088607595},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"м":{"docs":{},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{},"м":{"docs":{},"и":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"я":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"и":{"docs":{},"я":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"с":{"docs":{},"о":{"docs":{},"к":{"docs":{},"о":{"docs":{},"у":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"н":{"docs":{},"е":{"docs":{},"в":{"docs":{},"ы":{"docs":{},"х":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}}}}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"с":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"а":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}},"а":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010351966873706004},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}},"ш":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},"х":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"е":{"docs":{},"е":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"р":{"docs":{},"и":{"docs":{},"а":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"с":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"д":{"docs":{},"о":{"docs":{},"х":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"л":{"docs":{},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}}},"з":{"docs":{},"а":{"docs":{},"и":{"docs":{},"м":{"docs":{},"о":{"docs":{},"д":{"docs":{},"е":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"я":{"docs":{},"д":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"а":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"и":{"docs":{},"д":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}}}},"л":{"docs":{},"и":{"docs":{},"я":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"е":{"docs":{},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"в":{"docs":{},"с":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"з":{"docs":{},"м":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"ю":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"й":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"н":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"м":{"docs":{},"ы":{"docs":{},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"у":{"docs":{},"ю":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"ю":{"docs":{},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"щ":{"docs":{},"е":{"docs":{},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"и":{"docs":{},"й":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"у":{"docs":{},"ю":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ы":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}},"м":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"н":{"docs":{},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}},"ш":{"docs":{},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"у":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"я":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"г":{"docs":{},"е":{"docs":{},"т":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"ы":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"getters.html":{"ref":"getters.html","tf":10.018987341772151},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"api.html":{"ref":"api.html","tf":0.006195786864931847}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},".":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"о":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"р":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}}},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"р":{"docs":{},"я":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"hot-reload.html":{"ref":"hot-reload.html","tf":5.007042253521127}}}},"е":{"docs":{},"й":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"у":{"docs":{},"ю":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"в":{"docs":{},"о":{"docs":{},"р":{"docs":{},"я":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"л":{"docs":{},"о":{"docs":{},"б":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"о":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"г":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},"у":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"у":{"docs":{},"б":{"docs":{},"о":{"docs":{},"к":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"е":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}},"п":{"docs":{},"о":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"а":{"docs":{},"в":{"docs":{},"а":{"docs":{},"х":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"а":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}}}}},"и":{"docs":{},"д":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"actions.html":{"ref":"actions.html","tf":10.017211703958692},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521},"api.html":{"ref":"api.html","tf":0.004956629491945477}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"м":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0189328743545611},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"к":{"docs":{},"л":{"docs":{},"а":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"в":{"docs":{},"е":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0055658627087198514}},"м":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"л":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"и":{"docs":{},"п":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"р":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"л":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.011131725417439703},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"actions.html":{"ref":"actions.html","tf":0.010327022375215147},"modules.html":{"ref":"modules.html","tf":0.007475083056478406},"structure.html":{"ref":"structure.html","tf":0.01948051948051948},"plugins.html":{"ref":"plugins.html","tf":0.013363028953229399},"strict.html":{"ref":"strict.html","tf":0.024390243902439025},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.005555555555555556},"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521},"api.html":{"ref":"api.html","tf":0.011152416356877323}}}},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},"с":{"docs":{},"т":{"docs":{},"у":{"docs":{},"п":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.00927643784786642},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"н":{"docs":{},"ы":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"и":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}}},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"л":{"docs":{},"г":{"docs":{},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"н":{"docs":{},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"о":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"а":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"к":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}}}},"б":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"и":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ю":{"docs":{},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"ч":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"х":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"н":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}}}}},"ж":{"docs":{},"и":{"docs":{},"д":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"в":{"docs":{},"а":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}},"\"":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"ж":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"л":{"docs":{},"е":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"к":{"docs":{},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}},"ё":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"р":{"docs":{},"у":{"docs":{},"г":{"docs":{},"и":{"docs":{},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},")":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"о":{"docs":{},"е":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"э":{"docs":{},"н":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"в":{"docs":{},"а":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"у":{"docs":{},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}}}}}},"х":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}}}}},"у":{"docs":{},"б":{"docs":{},"л":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"п":{"docs":{},"е":{"docs":{},"т":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"р":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0068846815834767644}}}}}},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}}}}}}}},"з":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"hot-reload.html":{"ref":"hot-reload.html","tf":5.007042253521127}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"у":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"ы":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}},"т":{"docs":{},"и":{"docs":{},"м":{"docs":{},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}},"п":{"docs":{},"у":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"к":{"docs":{"testing.html":{"ref":"testing.html","tf":0.005555555555555556}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"е":{"docs":{},"т":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"р":{"docs":{},"е":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"о":{"docs":{},"с":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"о":{"docs":{},"в":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"а":{"docs":{},"ш":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"в":{"docs":{},"и":{"docs":{},"с":{"docs":{},"е":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"я":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"и":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"й":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"я":{"docs":{},"х":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"е":{"docs":{},"р":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}},"д":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"у":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"м":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"к":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"т":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"р":{"docs":{},"у":{"docs":{},"д":{"docs":{},"н":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"а":{"docs":{},"т":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}},"е":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"л":{"docs":{},"о":{"docs":{},"г":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"ы":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"а":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}}}},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"г":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{},"т":{"docs":{},"у":{"docs":{},"ю":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"г":{"docs":{},"р":{"docs":{},"я":{"docs":{},"з":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"у":{"docs":{},"з":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{},"с":{"docs":{},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"д":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}},"и":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.041407867494824016},"getting-started.html":{"ref":"getting-started.html","tf":0.01444043321299639},"state.html":{"ref":"state.html","tf":0.022263450834879406},"getters.html":{"ref":"getters.html","tf":0.00949367088607595},"mutations.html":{"ref":"mutations.html","tf":0.016516516516516516},"actions.html":{"ref":"actions.html","tf":0.01721170395869191},"modules.html":{"ref":"modules.html","tf":0.015780730897009966},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"testing.html":{"ref":"testing.html","tf":0.016666666666666666},"hot-reload.html":{"ref":"hot-reload.html","tf":0.028169014084507043},"api.html":{"ref":"api.html","tf":0.023543990086741014}},"з":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"й":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.01444043321299639},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"с":{"docs":{},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"м":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}},"у":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"м":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464}}}}}},"л":{"docs":{},"и":{"docs":{},"ш":{"docs":{},"н":{"docs":{},"е":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"р":{"docs":{},"я":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}},"б":{"docs":{},"е":{"docs":{},"г":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"ж":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}},"в":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}},"ч":{"docs":{},"н":{"docs":{},"и":{"docs":{},"к":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"о":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}},"и":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"\"":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"и":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.007434944237918215}}},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.00927643784786642},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.004166666666666667},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}}}}}}}},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678}},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"ы":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"й":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"у":{"docs":{},"ю":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"а":{"docs":{},"я":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"ю":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"и":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"ч":{"docs":{},"е":{"docs":{},"з":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}},"я":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.004956629491945477}}}},"д":{"docs":{},"е":{"docs":{},"я":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"а":{"docs":{},"л":{"docs":{},"а":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"ё":{"docs":{},"т":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"н":{"docs":{},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"ы":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"а":{"docs":{},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}},"т":{"docs":{},"е":{"docs":{},"г":{"docs":{},"р":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"ю":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"е":{"docs":{},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"ы":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"х":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"а":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"ы":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}}}}}},"о":{"docs":{},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"к":{"docs":{},"а":{"docs":{},"п":{"docs":{},"с":{"docs":{},"у":{"docs":{},"л":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}}}}}},"х":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"е":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"н":{"docs":{},"а":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"н":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"ы":{"docs":{},"й":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"ю":{"docs":{},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}}},"я":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"ё":{"docs":{},"н":{"docs":{"modules.html":{"ref":"modules.html","tf":0.014119601328903655}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.004956629491945477}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"и":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0033222591362126247}},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"modules.html":{"ref":"modules.html","tf":10.00498338870432},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0049833887043189366},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"о":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"г":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.006195786864931847}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.012458471760797342},"api.html":{"ref":"api.html","tf":0.006195786864931847}},"х":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0033222591362126247}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},")":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.00927643784786642},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.005555555555555556}}}},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"modules.html":{"ref":"modules.html","tf":0.0049833887043189366},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.011152416356877323}},"е":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.005813953488372093},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"г":{"docs":{},"у":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"л":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},"а":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"у":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"у":{"docs":{},"т":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":10.01951951951952},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"plugins.html":{"ref":"plugins.html","tf":0.008908685968819599},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.008333333333333333},"hot-reload.html":{"ref":"hot-reload.html","tf":0.014084507042253521},"api.html":{"ref":"api.html","tf":0.007434944237918215}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},";":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"ю":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.010510510510510511},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.005555555555555556},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"/":{"docs":{},"д":{"docs":{},"е":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.016260162601626018},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}},"х":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"м":{"docs":{},"и":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"х":{"docs":{},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"т":{"docs":{},"о":{"docs":{},"д":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"о":{"docs":{},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"в":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}}}}},"х":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"з":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"о":{"docs":{},"м":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}},"н":{"docs":{},"е":{"docs":{},"е":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"ж":{"docs":{},"д":{"docs":{},"у":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"р":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{},"с":{"docs":{},"л":{"docs":{},"о":{"docs":{},"в":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"й":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"е":{"docs":{},"е":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}},"ж":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"ы":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.018050541516245487},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"а":{"docs":{},"с":{"docs":{},"с":{"docs":{},"и":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"г":{"docs":{},"а":{"docs":{},"з":{"docs":{},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"н":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.012422360248447204},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"getters.html":{"ref":"getters.html","tf":0.00949367088607595},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.008605851979345954},"modules.html":{"ref":"modules.html","tf":0.009136212624584718},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.008908685968819599},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.004956629491945477}},"о":{"docs":{},"б":{"docs":{},"о":{"docs":{},"р":{"docs":{},"о":{"docs":{},"т":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}}},"ч":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"getting-started.html":{"ref":"getting-started.html","tf":5.003610108303249}}},"е":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"н":{"docs":{},"ё":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"п":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}}}}},"я":{"docs":{},"м":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"р":{"docs":{},"я":{"docs":{},"д":{"docs":{},"у":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"ш":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"н":{"docs":{},"о":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}},"я":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"й":{"docs":{},"т":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"г":{"docs":{},"р":{"docs":{},"у":{"docs":{},"з":{"docs":{},"к":{"docs":{},"а":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}},"у":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"з":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"л":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"с":{"docs":{},"т":{"docs":{},"у":{"docs":{},"п":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"к":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"л":{"docs":{},"е":{"docs":{},"д":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"к":{"docs":{},"о":{"docs":{},"н":{"docs":{},"е":{"docs":{},"ц":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"л":{"docs":{},"а":{"docs":{},"д":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}},"б":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"д":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"й":{"docs":{},")":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"я":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"о":{"docs":{},"б":{"docs":{},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"м":{"docs":{},"о":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}}}}}}},"я":{"docs":{},"з":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}}}},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"р":{"docs":{},"и":{"docs":{},"в":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}}}},"в":{"docs":{},"о":{"docs":{},"з":{"docs":{},"м":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"ы":{"docs":{},"м":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}},"з":{"docs":{},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"с":{"docs":{},"и":{"docs":{},"м":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"к":{"docs":{},"о":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}},"п":{"docs":{},"л":{"docs":{},"о":{"docs":{},"х":{"docs":{},"а":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"р":{"docs":{},"и":{"docs":{},"я":{"docs":{},"т":{"docs":{},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}}}}}}},"с":{"docs":{},"к":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"и":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"о":{"docs":{},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"х":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}}}}}}}}},"м":{"docs":{},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}},"н":{"docs":{},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"я":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"в":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"м":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"и":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"р":{"docs":{},"м":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"ы":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"у":{"docs":{},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"и":{"docs":{},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"к":{"docs":{},"а":{"docs":{},"к":{"docs":{},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"ё":{"docs":{},"м":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"forms.html":{"ref":"forms.html","tf":5.005405405405406}}},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"у":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"\"":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},"о":{"docs":{},"в":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"а":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"а":{"docs":{},"т":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"з":{"docs":{},"о":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"щ":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"с":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{},"с":{"docs":{},"к":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"м":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}}},"п":{"docs":{},"е":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"о":{"docs":{},"к":{"docs":{},"о":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"я":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}},"и":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"а":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}}},"о":{"docs":{},"й":{"docs":{},"т":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"с":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}},"щ":{"docs":{},"е":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"с":{"docs":{},"у":{"docs":{},"д":{"docs":{},"и":{"docs":{},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"ъ":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.006195786864931847}},"а":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"у":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"о":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"м":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}}},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"я":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}},"ы":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"я":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"core-concepts.html":{"ref":"core-concepts.html","tf":5.076923076923077}}},"х":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"а":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"о":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"х":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"м":{"docs":{},"с":{"docs":{},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}},"я":{"docs":{},"с":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"ё":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"о":{"docs":{},"б":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}}},"д":{"docs":{},"н":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"у":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}},"в":{"docs":{},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"п":{"docs":{},"р":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}}}}},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},"к":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}},"и":{"docs":{},"н":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"р":{"docs":{},"у":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}},"н":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"п":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"я":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678}},"о":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"ц":{"docs":{},"и":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"и":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},")":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"й":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"о":{"docs":{},"н":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}}}}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}}},"о":{"docs":{},"с":{"docs":{},"р":{"docs":{},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}}}}},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.005555555555555556}},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}}}},"л":{"docs":{},"а":{"docs":{},"д":{"docs":{},"к":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"и":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"и":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"я":{"docs":{},"м":{"docs":{},"и":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"о":{"docs":{},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"з":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"с":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}},"д":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"е":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"р":{"docs":{},"а":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"к":{"docs":{},"у":{"docs":{},"п":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{},"т":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}},"ч":{"docs":{},"к":{"docs":{},"а":{"docs":{},"м":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"е":{"docs":{},"в":{"docs":{},"и":{"docs":{},"д":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}},"н":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"г":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"й":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"ы":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"р":{"docs":{},"г":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"з":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}}},"ш":{"docs":{},"и":{"docs":{},"б":{"docs":{},"к":{"docs":{},"у":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"и":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"ц":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}}}}}}}}}},"п":{"docs":{},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{},"и":{"docs":{},"н":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.015590200445434299}},"ы":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"plugins.html":{"ref":"plugins.html","tf":10.00445434298441},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"х":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"о":{"docs":{},"в":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"у":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"о":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"е":{"docs":{},"й":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"у":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"ю":{"docs":{},"т":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.004956629491945477}}},"щ":{"docs":{},"а":{"docs":{},"я":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"с":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"в":{"docs":{},"ш":{"docs":{},"а":{"docs":{},"я":{"docs":{},"с":{"docs":{},"я":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"а":{"docs":{},"г":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"е":{"docs":{},"з":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"ы":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"й":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"м":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"н":{"docs":{},"я":{"docs":{},"т":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"core-concepts.html":{"ref":"core-concepts.html","tf":5.076923076923077}}},"й":{"docs":{},".":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464}}}}},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"а":{"docs":{},"д":{"docs":{},"о":{"docs":{},"б":{"docs":{},"и":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}}}}}}}}}},"д":{"docs":{},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"т":{"docs":{},"ь":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"ю":{"docs":{},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"е":{"docs":{},"в":{"docs":{},"о":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"л":{"docs":{},"к":{"docs":{},"о":{"docs":{},"й":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"ь":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"о":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"у":{"docs":{},"ю":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"ы":{"docs":{},"й":{"docs":{"testing.html":{"ref":"testing.html","tf":0.004166666666666667}}},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"о":{"docs":{},"б":{"docs":{},"н":{"docs":{},"ы":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"р":{"docs":{},"о":{"docs":{},"б":{"docs":{},"н":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"е":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.02973977695167286}}}}}}},"у":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}},"м":{"docs":{},"о":{"docs":{},"д":{"docs":{},"у":{"docs":{},"л":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"п":{"docs":{},"и":{"docs":{},"с":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}}}}}}},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"д":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"х":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"к":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"у":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"м":{"docs":{},"о":{"docs":{},"т":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"ь":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"у":{"docs":{},"п":{"docs":{},"о":{"docs":{},"к":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"д":{"docs":{},"а":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ю":{"docs":{},"щ":{"docs":{},"у":{"docs":{},"ю":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"щ":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"ь":{"docs":{},"ю":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}},"ч":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"ы":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}},"и":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"н":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"и":{"docs":{},"м":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"т":{"docs":{},"о":{"docs":{},"к":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"о":{"docs":{},"в":{"docs":{},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"м":{"docs":{},"к":{"docs":{},"а":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"у":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"р":{"docs":{},"е":{"docs":{},"б":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}}},"ч":{"docs":{},"е":{"docs":{},"м":{"docs":{},"у":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"?":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"я":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"ю":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"з":{"docs":{},"в":{"docs":{},"о":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"д":{"docs":{},"н":{"docs":{},"е":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"п":{"docs":{},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"у":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"ы":{"docs":{},"т":{"docs":{},"к":{"docs":{},"а":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}},"х":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"б":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"в":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"е":{"docs":{},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"р":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.010351966873706004},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"actions.html":{"ref":"actions.html","tf":0.008605851979345954},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.016260162601626018},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.011152416356877323}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":0.014492753623188406},"getting-started.html":{"ref":"getting-started.html","tf":0.01444043321299639},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":5.01948051948052},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"м":{"docs":{},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.024390243902439025}}}}}}}},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"ы":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"и":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"т":{"docs":{},"е":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"я":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"р":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"testing.html":{"ref":"testing.html","tf":0.004166666666666667},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},"о":{"docs":{},"в":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"ш":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}},"в":{"docs":{},"е":{"docs":{},"д":{"docs":{},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"н":{"docs":{},"е":{"docs":{},"с":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"о":{"docs":{},"д":{"docs":{},"я":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"я":{"docs":{},"з":{"docs":{},"к":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}},"д":{"docs":{},"ё":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"л":{"docs":{},"о":{"docs":{},"с":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"б":{"docs":{},"л":{"docs":{},"и":{"docs":{},"ж":{"docs":{},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"е":{"docs":{},"т":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"ц":{"docs":{},"и":{"docs":{},"п":{"docs":{},"о":{"docs":{},"в":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}},"с":{"docs":{},"о":{"docs":{},"е":{"docs":{},"д":{"docs":{},"и":{"docs":{},"н":{"docs":{},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}},"п":{"docs":{},"о":{"docs":{},"с":{"docs":{},"о":{"docs":{},"б":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}},"в":{"docs":{},"а":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"п":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"е":{"docs":{},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"я":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"ю":{"docs":{},"щ":{"docs":{},"у":{"docs":{},"ю":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}}},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602}},"м":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402}}}}}},"я":{"docs":{},"ю":{"docs":{},"т":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"ь":{"docs":{},"т":{"docs":{},"е":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"м":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"ы":{"docs":{},"д":{"docs":{},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"в":{"docs":{},"р":{"docs":{},"а":{"docs":{},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}},"ф":{"docs":{},"и":{"docs":{},"к":{"docs":{},"с":{"docs":{},"о":{"docs":{},"в":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"к":{"docs":{},"р":{"docs":{},"а":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"о":{"docs":{},"и":{"docs":{},"з":{"docs":{},"о":{"docs":{},"й":{"docs":{},"д":{"docs":{},"ё":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"т":{"docs":{},"и":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"в":{"docs":{},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}}}}},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}},"с":{"docs":{},"х":{"docs":{},"о":{"docs":{},"д":{"docs":{},"я":{"docs":{},"т":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"и":{"docs":{},"т":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}},"б":{"docs":{},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"й":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"у":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"д":{"docs":{},"в":{"docs":{},"и":{"docs":{},"н":{"docs":{},"у":{"docs":{},"т":{"docs":{},"ы":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"й":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"г":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"т":{"docs":{},"а":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"ы":{"docs":{},"х":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0049833887043189366},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"м":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006644518272425249},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}}},"у":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"т":{"docs":{},"я":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}},"к":{"docs":{},"с":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735}}},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.006195786864931847}}}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}},"щ":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"г":{"docs":{},"р":{"docs":{},"а":{"docs":{},"м":{"docs":{},"м":{"docs":{},"ы":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{},"а":{"docs":{},"х":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}},"в":{"docs":{},"е":{"docs":{},"р":{"docs":{},"я":{"docs":{},"е":{"docs":{},"м":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"а":{"docs":{},"в":{"docs":{},"и":{"docs":{},"л":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"а":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}},"о":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"к":{"docs":{},"т":{"docs":{},"и":{"docs":{},"к":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"а":{"docs":{},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}}},"т":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"о":{"docs":{},"в":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"м":{"docs":{},"е":{"docs":{},"т":{"docs":{},"р":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}}}},"о":{"docs":{},"м":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"а":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},"м":{"docs":{},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"е":{"docs":{},"р":{"docs":{},"в":{"docs":{},"о":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"г":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"е":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"ы":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"?":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}},"е":{"docs":{},"д":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"а":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ч":{"docs":{},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678}}}},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"г":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ы":{"docs":{},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"ё":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"с":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"ы":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"и":{"docs":{},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}}}},"к":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}},"у":{"docs":{},"т":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}}},"и":{"docs":{},"с":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"с":{"docs":{},"е":{"docs":{},"в":{"docs":{},"д":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"ы":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"ы":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"ы":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"getting-started.html":{"ref":"getting-started.html","tf":5.003610108303249},"state.html":{"ref":"state.html","tf":0.0037105751391465678}}},"у":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}},"з":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"к":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"и":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}}},"а":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"о":{"docs":{},"в":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"е":{"docs":{},"ш":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"с":{"docs":{},"я":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}},"г":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}}}},"б":{"docs":{},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"я":{"docs":{},"с":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"я":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"у":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"м":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"о":{"docs":{},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"л":{"docs":{},"и":{"docs":{},"с":{"docs":{},"ь":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}},"л":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"р":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678}}}}}}}}}}}}}},"ш":{"docs":{},"и":{"docs":{},"р":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"я":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{},"ж":{"docs":{},"е":{"docs":{},"м":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"е":{"docs":{},"м":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}}},"к":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}},"м":{"docs":{},"к":{"docs":{},"а":{"docs":{},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"е":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"strict.html":{"ref":"strict.html","tf":2.532520325203252}},"а":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},"е":{"docs":{"strict.html":{"ref":"strict.html","tf":0.016260162601626018}}}}}},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"п":{"docs":{},"о":{"docs":{},"з":{"docs":{},"и":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"и":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}}}}}},"а":{"docs":{},"к":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"о":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"а":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"л":{"docs":{},"и":{"docs":{},"з":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"я":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"ы":{"docs":{},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"г":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"ш":{"docs":{},"а":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"з":{"docs":{},"у":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"testing.html":{"ref":"testing.html","tf":0.004166666666666667}},"ы":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}}}}},"г":{"docs":{},"и":{"docs":{},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004152823920265781}}}}}},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}}}}}}}}},"н":{"docs":{},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"и":{"docs":{},"н":{"docs":{},"г":{"docs":{},"о":{"docs":{},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"о":{"docs":{},"д":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"я":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ь":{"docs":{},"с":{"docs":{},"к":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"с":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.018633540372670808},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.006006006006006006},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.012458471760797342},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"forms.html":{"ref":"forms.html","tf":0.021621621621621623},"testing.html":{"ref":"testing.html","tf":0.008333333333333333},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.011152416356877323}},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"core-concepts.html":{"ref":"core-concepts.html","tf":0.038461538461538464},"state.html":{"ref":"state.html","tf":10.012987012987013},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0075075075075075074},"modules.html":{"ref":"modules.html","tf":0.009966777408637873},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"api.html":{"ref":"api.html","tf":0.007434944237918215}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602}},"\"":{"docs":{},"?":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ю":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.032490974729241874},"state.html":{"ref":"state.html","tf":0.011131725417439703},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.008908685968819599},"strict.html":{"ref":"strict.html","tf":0.016260162601626018},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"й":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"и":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"е":{"docs":{},"д":{"docs":{},"н":{"docs":{},"и":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"д":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"м":{"docs":{},"о":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}},"м":{"docs":{},"у":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"а":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"с":{"docs":{},"я":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}},"б":{"docs":{},"л":{"docs":{},"ю":{"docs":{},"д":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"ы":{"docs":{},"т":{"docs":{},"и":{"docs":{},"й":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"я":{"docs":{},"м":{"docs":{},"и":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ы":{"docs":{},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"о":{"docs":{},"й":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"и":{"docs":{},"р":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}},"р":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"в":{"docs":{},"м":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}},"е":{"docs":{},"р":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"и":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}},"т":{"docs":{},"ь":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}}},"ж":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"з":{"docs":{},"д":{"docs":{},"а":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"ё":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.006195786864931847}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"д":{"docs":{},"и":{"docs":{},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"и":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"о":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}}},"ю":{"docs":{},"щ":{"docs":{},"у":{"docs":{},"ю":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"м":{"docs":{},"н":{"docs":{},"е":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"г":{"docs":{},"л":{"docs":{},"а":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}},"о":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"т":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"я":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}},"к":{"docs":{},"е":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},"в":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"ч":{"docs":{},"е":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"п":{"docs":{},"р":{"docs":{},"а":{"docs":{},"в":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"и":{"docs":{},"к":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"api.html":{"ref":"api.html","tf":5.001239157372987}}}}}}},"к":{"docs":{},"и":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}},"о":{"docs":{},"в":{"docs":{},"о":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}}},"е":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"о":{"docs":{},"с":{"docs":{},"о":{"docs":{},"б":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"о":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"и":{"docs":{},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"о":{"docs":{},"к":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{},"г":{"docs":{},"и":{"docs":{},"й":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"strict.html":{"ref":"strict.html","tf":2.524390243902439}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"м":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}},"к":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"о":{"docs":{},"в":{"docs":{},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}}}},"у":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":5.0064935064935066}}},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"у":{"docs":{"structure.html":{"ref":"structure.html","tf":0.012987012987012988}}},"ы":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}},"а":{"docs":{},"д":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"е":{"docs":{},"л":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"а":{"docs":{},"л":{"docs":{},"к":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},"с":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}},"т":{"docs":{},"у":{"docs":{},"с":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"к":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"и":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}},"р":{"docs":{},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}},"о":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"ы":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"и":{"docs":{},"т":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"а":{"docs":{},"м":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"ы":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"м":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"я":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}}}},"г":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"а":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"б":{"docs":{},"о":{"docs":{},"р":{"docs":{},"к":{"docs":{},"у":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"о":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"е":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"и":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"щ":{"docs":{},"и":{"docs":{},"к":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}},"в":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}},"о":{"docs":{},"й":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"?":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"м":{"docs":{},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"о":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"х":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"я":{"docs":{},"з":{"docs":{},"а":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"ы":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"т":{"docs":{},"ь":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}},"к":{"docs":{},"е":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}},"к":{"docs":{},"а":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}},"л":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}}}}}}},"о":{"docs":{},"р":{"docs":{},"е":{"docs":{},"е":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"с":{"docs":{},"ы":{"docs":{},"л":{"docs":{},"к":{"docs":{},"а":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"у":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"и":{"docs":{},"н":{"docs":{},"г":{"docs":{},"л":{"docs":{},"т":{"docs":{},"о":{"docs":{},"н":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}},"?":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"о":{"docs":{},"в":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"з":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"м":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"о":{"docs":{},"м":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}},"т":{"docs":{},"а":{"docs":{},"к":{"docs":{},"с":{"docs":{},"и":{"docs":{},"с":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"м":{"docs":{},"у":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"ы":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"т":{"docs":{},"у":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{},"м":{"docs":{},"и":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"е":{"docs":{},"й":{"docs":{},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}},"л":{"docs":{},"е":{"docs":{},"д":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"е":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"у":{"docs":{},"ю":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"п":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"о":{"docs":{},"к":{"docs":{},"\"":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}},"о":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"ы":{"docs":{},"х":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"м":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"е":{"docs":{},"е":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"в":{"docs":{},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"у":{"docs":{},"ж":{"docs":{},"и":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"ч":{"docs":{},"а":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"в":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},",":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"я":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}},"и":{"docs":{},"я":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"ш":{"docs":{},"к":{"docs":{},"о":{"docs":{},"м":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}},"р":{"docs":{},"а":{"docs":{},"б":{"docs":{},"о":{"docs":{},"т":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"в":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"е":{"docs":{},"д":{"docs":{},"н":{"docs":{},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"ч":{"docs":{},"ё":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"ч":{"docs":{},"и":{"docs":{},"к":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"о":{"docs":{},"м":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"и":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}},"е":{"docs":{},"й":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"с":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}},"б":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"р":{"docs":{},"в":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"и":{"docs":{},"с":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"т":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"о":{"docs":{},"м":{"docs":{},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},"л":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}},"т":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"м":{"docs":{},"о":{"docs":{},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"н":{"docs":{},"и":{"docs":{},"м":{"docs":{},"а":{"docs":{},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"я":{"docs":{},"т":{"docs":{},"и":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"т":{"docs":{},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"к":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"о":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":3.3395445134575565}}},"в":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"г":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}}},"й":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"и":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"х":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ж":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"testing.html":{"ref":"testing.html","tf":10.005555555555556}}},"я":{"docs":{"testing.html":{"ref":"testing.html","tf":0.006944444444444444}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"о":{"docs":{},"в":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"ы":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}}}},"г":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},"о":{"docs":{},"в":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}},"п":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}},"к":{"docs":{},"у":{"docs":{},"щ":{"docs":{},"е":{"docs":{},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}},"р":{"docs":{},"м":{"docs":{},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"р":{"docs":{},"е":{"docs":{},"б":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},"с":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"а":{"docs":{},"д":{"docs":{},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}},"н":{"docs":{},"з":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"я":{"docs":{},"м":{"docs":{},"и":{"docs":{},";":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}}},"ю":{"docs":{},"к":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.009913258983890954}},"г":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}}},"д":{"docs":{},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"л":{"docs":{},"ь":{"docs":{},"к":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"plugins.html":{"ref":"plugins.html","tf":0.008908685968819599},"api.html":{"ref":"api.html","tf":0.007434944237918215}}}}}},"в":{"docs":{},"а":{"docs":{},"р":{"docs":{},"ы":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"о":{"docs":{},"в":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"ж":{"docs":{},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"и":{"docs":{},"п":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.011152416356877323}}},"а":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"м":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"о":{"docs":{},"в":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}}}},"у":{"docs":{},"т":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"о":{"docs":{},"в":{"docs":{},"к":{"docs":{},"а":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"installation.html":{"ref":"installation.html","tf":10.017699115044248}}},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}}},"л":{"docs":{},"о":{"docs":{},"ж":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678}}}}}}}}}},"м":{"docs":{},"о":{"docs":{},"т":{"docs":{},"р":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"п":{"docs":{},"е":{"docs":{},"х":{"docs":{},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"ш":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"к":{"docs":{},"а":{"docs":{},"з":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"н":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"и":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"м":{"docs":{},"у":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.006195786864931847}}}}}},"в":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ы":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683}}}},"е":{"docs":{},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"т":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"ж":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}},"ж":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"л":{"docs":{},"у":{"docs":{},"ч":{"docs":{},"ш":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"п":{"docs":{},"р":{"docs":{},"а":{"docs":{},"в":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"я":{"docs":{},"т":{"docs":{},"ь":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"ю":{"docs":{},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}},"о":{"docs":{},"щ":{"docs":{},"а":{"docs":{},"е":{"docs":{},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"ё":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}},"у":{"docs":{},"с":{"docs":{},"к":{"docs":{},"а":{"docs":{},"е":{"docs":{},"м":{"docs":{},".":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"в":{"docs":{},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}},"л":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}},"и":{"docs":{},"д":{"docs":{},"и":{"docs":{},"м":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"д":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"о":{"docs":{},"в":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ь":{"docs":{},"т":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}}}}},"б":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}},"а":{"docs":{},"ё":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ь":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}}}}}},"т":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"т":{"docs":{},"ы":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"о":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}},"з":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"м":{"docs":{},"о":{"docs":{},"л":{"docs":{},"ч":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ю":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"б":{"docs":{},"е":{"docs":{},"д":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"с":{"docs":{},"ь":{"docs":{},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}}},"х":{"docs":{},"у":{"docs":{},"д":{"docs":{},"ш":{"docs":{},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}}},"ч":{"docs":{},"ё":{"docs":{},"т":{"docs":{},"а":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}},"ф":{"docs":{},"о":{"docs":{},"р":{"docs":{},"м":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"forms.html":{"ref":"forms.html","tf":5.005405405405406}},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"а":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}},"у":{"docs":{},"н":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"api.html":{"ref":"api.html","tf":0.004956629491945477}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},"м":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"о":{"docs":{},"н":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"ь":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}},"и":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"й":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"а":{"docs":{},"й":{"docs":{},"л":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"ы":{"docs":{},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"о":{"docs":{},"в":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}},"к":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"к":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}},"б":{"docs":{},"р":{"docs":{},"и":{"docs":{},"к":{"docs":{},"у":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}},"р":{"docs":{},"а":{"docs":{},"к":{"docs":{},"т":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"а":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"к":{"docs":{},"с":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}}},"ч":{"docs":{},"т":{"docs":{},"о":{"docs":{"./":{"ref":"./","tf":0.024390243902439025},"intro.html":{"ref":"intro.html","tf":3.3374741200828155},"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"state.html":{"ref":"state.html","tf":0.0074211502782931356},"mutations.html":{"ref":"mutations.html","tf":0.0075075075075075074},"actions.html":{"ref":"actions.html","tf":0.0189328743545611},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.016260162601626018},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.012391573729863693}},"б":{"docs":{},"ы":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}},"е":{"docs":{},"н":{"docs":{},"и":{"docs":{},"и":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"я":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}}},"а":{"docs":{},"с":{"docs":{},"т":{"docs":{},"е":{"docs":{},"й":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402}}},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"ь":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"щ":{"docs":{},"е":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}},"ё":{"docs":{},"т":{"docs":{},"к":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"е":{"docs":{},"р":{"docs":{},"е":{"docs":{},"з":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}},"и":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{},"е":{"docs":{},"л":{"docs":{},"я":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},"в":{"docs":{},"т":{"docs":{},"о":{"docs":{},"м":{"docs":{},"а":{"docs":{},"т":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"к":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}}}}},"р":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"б":{"docs":{},"р":{"docs":{},"а":{"docs":{},"м":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"а":{"docs":{},"к":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}},"р":{"docs":{},"х":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"р":{"docs":{},"о":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}}}}}}}},"г":{"docs":{},"у":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}},"о":{"docs":{},"м":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"в":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"ы":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"а":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}},"м":{"docs":{},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"с":{"docs":{},"и":{"docs":{},"н":{"docs":{},"х":{"docs":{},"р":{"docs":{},"о":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},"с":{"docs":{},"т":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}}},"г":{"docs":{},"о":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"ы":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"м":{"docs":{},"и":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}},"н":{"docs":{},"а":{"docs":{},"л":{"docs":{},"о":{"docs":{},"г":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"а":{"docs":{},"я":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}},"ы":{"docs":{},"м":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"л":{"docs":{},"ь":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"н":{"docs":{},"а":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"ы":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}}}}},"т":{"docs":{},"р":{"docs":{},"и":{"docs":{},"б":{"docs":{},"у":{"docs":{},"т":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}},"б":{"docs":{},"у":{"docs":{},"д":{"docs":{},"е":{"docs":{},"т":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"mutations.html":{"ref":"mutations.html","tf":0.010510510510510511},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.005813953488372093},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"у":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.004152823920265781},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}},"е":{"docs":{},"з":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"с":{"docs":{},"с":{"docs":{},"м":{"docs":{},"ы":{"docs":{},"с":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"о":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}}},"д":{"docs":{},"е":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"и":{"docs":{},"б":{"docs":{},"л":{"docs":{},"и":{"docs":{},"о":{"docs":{},"т":{"docs":{},"е":{"docs":{},"к":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"м":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}},"л":{"docs":{},"а":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},"д":{"docs":{},"а":{"docs":{},"р":{"docs":{},"я":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}},"о":{"docs":{},"л":{"docs":{},"е":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"ь":{"docs":{},"ш":{"docs":{},"о":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}},"й":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"у":{"docs":{},"ю":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"и":{"docs":{},"н":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"м":{"docs":{},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}},"а":{"docs":{},"я":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"ы":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"с":{"docs":{},"т":{"docs":{},"р":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402}}}}}},"т":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.006195786864931847}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"л":{"docs":{},"о":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"р":{"docs":{},"а":{"docs":{},"у":{"docs":{},"з":{"docs":{},"е":{"docs":{},"р":{"docs":{},"а":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}}},"е":{"docs":{},"с":{"docs":{},"л":{"docs":{},"и":{"docs":{"installation.html":{"ref":"installation.html","tf":0.017699115044247787},"intro.html":{"ref":"intro.html","tf":0.006211180124223602},"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"state.html":{"ref":"state.html","tf":0.0074211502782931356},"getters.html":{"ref":"getters.html","tf":0.00949367088607595},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"api.html":{"ref":"api.html","tf":0.0037174721189591076}}}},"т":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}},"ь":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"щ":{"docs":{},"ё":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"д":{"docs":{},"и":{"docs":{},"н":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"й":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}},"о":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0055658627087198514}}},"м":{"docs":{},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"г":{"docs":{},"о":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"ё":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}},"к":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.014842300556586271},"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.005813953488372093},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"о":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"м":{"docs":{},"а":{"docs":{},"н":{"docs":{},"д":{"docs":{},"о":{"docs":{},"й":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}}}}},"п":{"docs":{},"о":{"docs":{},"н":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0055658627087198514}},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.004956629491945477}}},"х":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}}},"м":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"и":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}},"о":{"docs":{},"в":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010351966873706004},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195}}}}},"ы":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"у":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"з":{"docs":{},"и":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"я":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"л":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"б":{"docs":{},"и":{"docs":{},"н":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{},".":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}},"н":{"docs":{},"к":{"docs":{},"р":{"docs":{},"е":{"docs":{},"т":{"docs":{},"н":{"docs":{},"у":{"docs":{},"ю":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"ц":{"docs":{},"е":{"docs":{},"п":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"е":{"docs":{},"й":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}},"т":{"docs":{},"е":{"docs":{},"й":{"docs":{},"н":{"docs":{},"е":{"docs":{},"р":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}}},"к":{"docs":{},"с":{"docs":{},"т":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"а":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}},"е":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}},"ф":{"docs":{},"л":{"docs":{},"и":{"docs":{},"к":{"docs":{},"т":{"docs":{},"у":{"docs":{},"е":{"docs":{},"т":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}},"и":{"docs":{},"г":{"docs":{},"у":{"docs":{},"р":{"docs":{},"а":{"docs":{},"ц":{"docs":{},"и":{"docs":{},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"ю":{"docs":{"testing.html":{"ref":"testing.html","tf":0.002777777777777778}}}}}}}}}}},"с":{"docs":{},"т":{"docs":{},"а":{"docs":{},"н":{"docs":{},"т":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"у":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003}}}}}},"р":{"docs":{},"у":{"docs":{},"к":{"docs":{},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}}}}}},"г":{"docs":{},"д":{"docs":{},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"д":{"docs":{"state.html":{"ref":"state.html","tf":0.0037105751391465678},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"а":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"р":{"docs":{},"о":{"docs":{},"б":{"docs":{},"к":{"docs":{},"и":{"docs":{},"\"":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"н":{"docs":{},"е":{"docs":{},"в":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"е":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"м":{"docs":{},"у":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}},"ы":{"docs":{},"е":{"docs":{"structure.html":{"ref":"structure.html","tf":0.012987012987012988},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}}}}}},"з":{"docs":{},"и":{"docs":{},"н":{"docs":{},"е":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"у":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},"ы":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"structure.html":{"ref":"structure.html","tf":0.012987012987012988}}}}}}},"т":{"docs":{},"о":{"docs":{},"р":{"docs":{},"ы":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"х":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},"у":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"е":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}},"л":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"у":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}},"о":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}}}}},"л":{"docs":{},"б":{"docs":{},"э":{"docs":{},"к":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}},"а":{"docs":{},"м":{"docs":{},"и":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"о":{"docs":{},"в":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"и":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"п":{"docs":{},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}}}}},"р":{"docs":{},"о":{"docs":{},"м":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}},"а":{"docs":{},"т":{"docs":{},"к":{"docs":{},"о":{"docs":{},"в":{"docs":{},"р":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"н":{"docs":{},"а":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}}},"с":{"docs":{},"н":{"docs":{},"о":{"docs":{},"р":{"docs":{},"е":{"docs":{},"ч":{"docs":{},"и":{"docs":{},"в":{"docs":{},"ы":{"docs":{},"м":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"у":{"docs":{},"п":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"м":{"docs":{},"а":{"docs":{},"с":{"docs":{},"ш":{"docs":{},"т":{"docs":{},"а":{"docs":{},"б":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}}}}}},"ы":{"docs":{},"х":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"и":{"docs":{},"ю":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}},"а":{"docs":{},"ж":{"docs":{},"д":{"docs":{},"ы":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"о":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"й":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"г":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}},"у":{"docs":{},"ю":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"а":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"к":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"state.html":{"ref":"state.html","tf":0.0074211502782931356},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0034423407917383822},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.002777777777777778},"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761},"api.html":{"ref":"api.html","tf":0.0037174721189591076}},"и":{"docs":{},"х":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"о":{"docs":{},"й":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"м":{"docs":{},"н":{"docs":{},"и":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"ч":{"docs":{},"е":{"docs":{},"с":{"docs":{},"т":{"docs":{},"в":{"docs":{},"е":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}}}}}},"э":{"docs":{},"ш":{"docs":{},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}}}}}}}}},"у":{"docs":{},"д":{"docs":{},"а":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}},"л":{"docs":{},"ю":{"docs":{},"ч":{"docs":{},"у":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}}}}}},"х":{"docs":{},"о":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{},"е":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"м":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"и":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"р":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"л":{"docs":{},"и":{"docs":{},"щ":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"state.html":{"ref":"state.html","tf":0.0074211502782931356},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},";":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"а":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.010830324909747292},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.004956629491945477}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"forms.html":{"ref":"forms.html","tf":0.005405405405405406},"api.html":{"ref":"api.html","tf":0.004956629491945477}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}},"т":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"м":{"docs":{},"о":{"docs":{},"м":{"docs":{},"у":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}},"у":{"docs":{},"п":{"docs":{},"к":{"docs":{},"и":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"е":{"docs":{},"л":{"docs":{},"п":{"docs":{},"е":{"docs":{},"р":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}},"у":{"docs":{},"к":{"docs":{},"и":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}},"э":{"docs":{},"т":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0055658627087198514},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"mutations.html":{"ref":"mutations.html","tf":0.010510510510510511},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"strict.html":{"ref":"strict.html","tf":0.024390243902439025},"forms.html":{"ref":"forms.html","tf":0.016216216216216217},"api.html":{"ref":"api.html","tf":0.0024783147459727386}},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}},"у":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.004140786749482402},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"modules.html":{"ref":"modules.html","tf":0.0024916943521594683},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.003003003003003003},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799},"strict.html":{"ref":"strict.html","tf":0.008130081300813009},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}},"й":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"modules.html":{"ref":"modules.html","tf":0.0016611295681063123}}}},"и":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},"х":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693}}},"м":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}},"а":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},"п":{"docs":{},"е":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004454342984409799}}}}}},"к":{"docs":{},"с":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"/":{"docs":{},"и":{"docs":{},"м":{"docs":{},"п":{"docs":{},"о":{"docs":{},"р":{"docs":{},"т":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}}},"и":{"docs":{},"р":{"docs":{},"у":{"docs":{},"е":{"docs":{},"м":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"т":{"docs":{},"ь":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"а":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}}}}}},"в":{"docs":{},"и":{"docs":{},"в":{"docs":{},"а":{"docs":{},"л":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{},"н":{"docs":{},"а":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}}},"з":{"docs":{},"е":{"docs":{},"м":{"docs":{},"п":{"docs":{},"л":{"docs":{},"я":{"docs":{},"р":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034423407917383822}},"а":{"docs":{"api.html":{"ref":"api.html","tf":0.0024783147459727386}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"о":{"docs":{},"в":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0008305647840531562}}}}}}}}}}}},"ф":{"docs":{},"ф":{"docs":{},"е":{"docs":{},"к":{"docs":{},"т":{"docs":{},"и":{"docs":{},"в":{"docs":{},"н":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"ы":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}},"л":{"docs":{},"е":{"docs":{},"м":{"docs":{},"е":{"docs":{},"н":{"docs":{},"т":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},"о":{"docs":{},"в":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.0031645569620253164}}}}},"а":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}}}}}}}}},"я":{"docs":{},"в":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"installation.html":{"ref":"installation.html","tf":0.008849557522123894},"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"state.html":{"ref":"state.html","tf":0.0018552875695732839},"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}},"л":{"docs":{},"я":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"structure.html":{"ref":"structure.html","tf":0.006493506493506494},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}}},"щ":{"docs":{},"и":{"docs":{},"е":{"docs":{},"с":{"docs":{},"я":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}}}}}}}}},"ж":{"docs":{},"е":{"docs":{"intro.html":{"ref":"intro.html","tf":0.008281573498964804},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0045045045045045045},"actions.html":{"ref":"actions.html","tf":0.0051635111876075735},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.008674101610904586}}}},"и":{"docs":{},"з":{"docs":{},"н":{"docs":{},"и":{"docs":{},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.007042253521126761}}}}}}}},"л":{"docs":{},"е":{"docs":{},"ж":{"docs":{},"а":{"docs":{},"щ":{"docs":{},"а":{"docs":{},"я":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"г":{"docs":{},"к":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}},"и":{"docs":{"testing.html":{"ref":"testing.html","tf":0.001388888888888889}},"ш":{"docs":{},"ь":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"testing.html":{"ref":"testing.html","tf":0.001388888888888889}}}},"б":{"docs":{},"о":{"docs":{"getters.html":{"ref":"getters.html","tf":0.006329113924050633},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}},"н":{"docs":{},"т":{"docs":{},"е":{"docs":{},"р":{"docs":{},"ы":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}},"о":{"docs":{},"г":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},"и":{"docs":{},"р":{"docs":{},"о":{"docs":{},"в":{"docs":{},"а":{"docs":{},"н":{"docs":{},"и":{"docs":{},"я":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997},"api.html":{"ref":"api.html","tf":0.0012391573729863693}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}},"е":{"docs":{},"м":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}}},"у":{"docs":{},"ю":{"docs":{},"т":{"docs":{},"с":{"docs":{},"я":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}},"щ":{"docs":{},"и":{"docs":{},"й":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}}}}}}},"к":{"docs":{},"и":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}},"а":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}},"к":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"о":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"м":{"docs":{},"у":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}},"ы":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"getters.html":{"ref":"getters.html","tf":0.0031645569620253164},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911},"modules.html":{"ref":"modules.html","tf":0.0008305647840531562},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}},"м":{"docs":{"forms.html":{"ref":"forms.html","tf":0.005405405405405406}}},"й":{"docs":{"api.html":{"ref":"api.html","tf":0.004956629491945477}}}}}}}}}},"у":{"docs":{},"ч":{"docs":{},"ш":{"docs":{},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}},"ю":{"docs":{},"б":{"docs":{},"о":{"docs":{},"г":{"docs":{},"о":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976},"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}}},"ы":{"docs":{},"е":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0012391573729863693}}}},"у":{"docs":{},"ю":{"docs":{"structure.html":{"ref":"structure.html","tf":0.006493506493506494}}}},"а":{"docs":{},"я":{"docs":{"strict.html":{"ref":"strict.html","tf":0.008130081300813009}}}}}},"а":{"docs":{},"к":{"docs":{},"о":{"docs":{},"н":{"docs":{},"и":{"docs":{},"ч":{"docs":{},"н":{"docs":{},"о":{"docs":{"state.html":{"ref":"state.html","tf":0.0018552875695732839}}}}}}}}}}},"ц":{"docs":{},"е":{"docs":{},"н":{"docs":{},"о":{"docs":{},"й":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}},"т":{"docs":{},"р":{"docs":{},"а":{"docs":{},"л":{"docs":{},"ь":{"docs":{},"н":{"docs":{},"ы":{"docs":{},"м":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"е":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.0036101083032490976}}}}}},"л":{"docs":{},"и":{"docs":{},"к":{"docs":{},"о":{"docs":{},"м":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015}}}}}}}}},"и":{"docs":{},"т":{"docs":{},"а":{"docs":{},"т":{"docs":{},"а":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}}},"ш":{"docs":{},"а":{"docs":{},"г":{"docs":{},"о":{"docs":{},"м":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}}},"и":{"docs":{},"н":{"docs":{},"ы":{"docs":{"intro.html":{"ref":"intro.html","tf":0.002070393374741201}}}}}},"—":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010351966873706004},"getting-started.html":{"ref":"getting-started.html","tf":0.007220216606498195},"state.html":{"ref":"state.html","tf":0.0037105751391465678},"mutations.html":{"ref":"mutations.html","tf":0.0075075075075075074},"actions.html":{"ref":"actions.html","tf":0.0068846815834767644},"modules.html":{"ref":"modules.html","tf":0.0033222591362126247},"plugins.html":{"ref":"plugins.html","tf":0.0066815144766146995},"forms.html":{"ref":"forms.html","tf":0.010810810810810811},"testing.html":{"ref":"testing.html","tf":0.001388888888888889},"api.html":{"ref":"api.html","tf":0.0024783147459727386}}},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},")":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0015015015015015015},"actions.html":{"ref":"actions.html","tf":0.0017211703958691911}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0022271714922048997}}},"が":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},"必":{"docs":{},"須":{"docs":{},"、":{"docs":{},"逆":{"docs":{},"も":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"同":{"docs":{},"様":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}}}}}}}}}},"要":{"docs":{},"な":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"か":{"docs":{},"も":{"docs":{},"し":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"、":{"docs":{},"中":{"docs":{},"規":{"docs":{},"模":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"大":{"docs":{},"規":{"docs":{},"模":{"docs":{},"の":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}},"導":{"docs":{},"入":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}},"変":{"docs":{},"わ":{"docs":{},"る":{"docs":{},"た":{"docs":{},"び":{"docs":{},"、":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"の":{"docs":{},"再":{"docs":{},"評":{"docs":{},"価":{"docs":{},"が":{"docs":{},"発":{"docs":{},"生":{"docs":{},"し":{"docs":{},"、":{"docs":{},"関":{"docs":{},"連":{"docs":{},"し":{"docs":{},"た":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"返":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"と":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"実":{"docs":{},"行":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}},"完":{"docs":{},"了":{"docs":{},"す":{"docs":{},"る":{"docs":{},"の":{"docs":{},"を":{"docs":{},"待":{"docs":{},"機":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}},"戻":{"docs":{},"り":{"docs":{},"値":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"返":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"く":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}},"含":{"docs":{},"ま":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{},"は":{"docs":{},"こ":{"docs":{},"ち":{"docs":{},"ら":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}},"と":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"modules.html":{"ref":"modules.html","tf":0.006779661016949152},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"は":{"docs":{},"何":{"docs":{},"か":{"docs":{},"?":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"intro.html":{"ref":"intro.html","tf":5}}},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}},"し":{"docs":{},"て":{"docs":{},"深":{"docs":{},"く":{"docs":{},"入":{"docs":{},"れ":{"docs":{},"子":{"docs":{},"に":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"の":{"docs":{},"は":{"docs":{},"面":{"docs":{},"倒":{"docs":{},"で":{"docs":{},"、":{"docs":{},"兄":{"docs":{},"弟":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"は":{"docs":{},"単":{"docs":{},"純":{"docs":{},"に":{"docs":{},"機":{"docs":{},"能":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"二":{"docs":{},"つ":{"docs":{},"目":{"docs":{},"は":{"docs":{},"、":{"docs":{},"親":{"docs":{},"子":{"docs":{},"の":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"直":{"docs":{},"接":{"docs":{},"参":{"docs":{},"照":{"docs":{},"し":{"docs":{},"た":{"docs":{},"り":{"docs":{},"、":{"docs":{},"イ":{"docs":{},"ベ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"介":{"docs":{},"し":{"docs":{},"て":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ピ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"、":{"docs":{},"同":{"docs":{},"期":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"試":{"docs":{},"み":{"docs":{},"る":{"docs":{},"ソ":{"docs":{},"リ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"頼":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"よ":{"docs":{},"く":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"の":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"、":{"docs":{},"い":{"docs":{},"ず":{"docs":{},"れ":{"docs":{},"も":{"docs":{},"脆":{"docs":{},"く":{"docs":{},"、":{"docs":{},"す":{"docs":{},"ぐ":{"docs":{},"に":{"docs":{},"メ":{"docs":{},"ン":{"docs":{},"テ":{"docs":{},"ナ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"が":{"docs":{},"困":{"docs":{},"難":{"docs":{},"な":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"に":{"docs":{},"繋":{"docs":{},"が":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"公":{"docs":{},"開":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}},"機":{"docs":{},"能":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"、":{"docs":{},"通":{"docs":{},"常":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ご":{"docs":{},"と":{"docs":{},"に":{"1":{"docs":{},"つ":{"docs":{},"し":{"docs":{},"か":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"は":{"docs":{},"持":{"docs":{},"た":{"docs":{},"な":{"docs":{},"い":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"意":{"docs":{},"味":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"単":{"docs":{},"一":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"は":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"部":{"docs":{},"分":{"docs":{},"を":{"docs":{},"見":{"docs":{},"つ":{"docs":{},"け":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"、":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"現":{"docs":{},"在":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"撮":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"容":{"docs":{},"易":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"な":{"docs":{},"り":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"も":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"内":{"docs":{},"の":{"docs":{},"ど":{"docs":{},"こ":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"も":{"docs":{},"状":{"docs":{},"態":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{},"し":{"docs":{},"た":{"docs":{},"り":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"!":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"同":{"docs":{},"じ":{"docs":{"api.html":{"ref":"api.html","tf":0.00949367088607595}},"で":{"docs":{},"す":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}},"。":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"し":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"に":{"docs":{},"限":{"docs":{},"る":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}}}}}}}}}}}},"か":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}},"い":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"イ":{"docs":{},"ベ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"登":{"docs":{},"録":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"も":{"docs":{},"の":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"を":{"docs":{},"起":{"docs":{},"動":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"は":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"を":{"docs":{},"指":{"docs":{},"定":{"docs":{},"し":{"docs":{},"て":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"動":{"docs":{},"作":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"と":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"く":{"docs":{},"、":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"な":{"docs":{},"値":{"docs":{},"に":{"docs":{},"関":{"docs":{},"す":{"docs":{},"る":{"docs":{},"注":{"docs":{},"意":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"意":{"docs":{},"味":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"書":{"docs":{},"く":{"docs":{},"か":{"docs":{},"、":{"docs":{},"も":{"docs":{},"し":{"docs":{},"く":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"を":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"く":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"問":{"docs":{},"題":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"従":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"解":{"docs":{},"決":{"docs":{},"策":{"docs":{},"も":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"宣":{"docs":{},"言":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"仮":{"docs":{},"定":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091},"actions.html":{"ref":"actions.html","tf":10.00344827586207}},"、":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"ビ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"の":{"docs":{},"ユ":{"docs":{},"ー":{"docs":{},"ザ":{"docs":{},"ー":{"docs":{},"入":{"docs":{},"力":{"docs":{},"に":{"docs":{},"反":{"docs":{},"応":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"可":{"docs":{},"能":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"方":{"docs":{},"法":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"へ":{"docs":{},"向":{"docs":{},"け":{"docs":{},"て":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}},"の":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"は":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"の":{"docs":{},"で":{"docs":{},"は":{"docs":{},"な":{"docs":{},"く":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"し":{"docs":{},"ば":{"docs":{},"し":{"docs":{},"ば":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"処":{"docs":{},"理":{"docs":{},"を":{"docs":{},"行":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"が":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"完":{"docs":{},"了":{"docs":{},"し":{"docs":{},"た":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"や":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"知":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"良":{"docs":{},"い":{"docs":{},"の":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"？":{"docs":{},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{},"も":{"docs":{},"っ":{"docs":{},"と":{"docs":{},"重":{"docs":{},"要":{"docs":{},"な":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"、":{"docs":{},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"複":{"docs":{},"雑":{"docs":{},"な":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"処":{"docs":{},"理":{"docs":{},"を":{"docs":{},"取":{"docs":{},"り":{"docs":{},"扱":{"docs":{},"う":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"や":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"構":{"docs":{},"成":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"か":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"形":{"docs":{},"式":{"docs":{},"と":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"を":{"docs":{},"サ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"似":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"が":{"docs":{},"、":{"docs":{},"下":{"docs":{},"記":{"docs":{},"の":{"docs":{},"点":{"docs":{},"で":{"docs":{},"異":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"任":{"docs":{},"意":{"docs":{},"の":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"処":{"docs":{},"理":{"docs":{},"を":{"docs":{},"含":{"docs":{},"む":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"外":{"docs":{},"部":{"docs":{},"の":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"を":{"docs":{},"構":{"docs":{},"成":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"す":{"docs":{},"る":{"docs":{},"か":{"docs":{},"、":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"に":{"docs":{},"は":{"docs":{},"、":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"の":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"や":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"の":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"も":{"docs":{},"の":{"docs":{},"を":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"テ":{"docs":{},"キ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"た":{"docs":{},"が":{"docs":{},"っ":{"docs":{},"て":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"構":{"docs":{},"造":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"structure.html":{"ref":"structure.html","tf":10.016949152542374}}}},"た":{"docs":{},"め":{"docs":{},"の":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}},"中":{"docs":{},"心":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"も":{"docs":{},"の":{"docs":{},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"\"":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"\"":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},"レ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"に":{"docs":{},"集":{"docs":{},"約":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ー":{"docs":{},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"と":{"docs":{},"て":{"docs":{},"も":{"docs":{},"簡":{"docs":{},"潔":{"docs":{},"に":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"！":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ー":{"docs":{},"ル":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"installation.html":{"ref":"installation.html","tf":10.01639344262295}}}}},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}},"ベ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091},"getters.html":{"ref":"getters.html","tf":10.005813953488373}},"は":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}},"第":{"1":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}},"2":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"他":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"を":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"プ":{"docs":{},"レ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"演":{"docs":{},"算":{"docs":{},"子":{"docs":{},"（":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}},"異":{"docs":{},"な":{"docs":{},"る":{"docs":{},"名":{"docs":{},"前":{"docs":{},"で":{"docs":{},"マ":{"docs":{},"ッ":{"docs":{},"ピ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"た":{"docs":{},"い":{"docs":{},"と":{"docs":{},"き":{"docs":{},"は":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"使":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"の":{"docs":{},"第":{"4":{"docs":{},"引":{"docs":{},"数":{"docs":{},"経":{"docs":{},"由":{"docs":{},"で":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"docs":{}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"の":{"docs":{},"例":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"評":{"docs":{},"価":{"docs":{},"後":{"docs":{},"の":{"docs":{},"値":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{},"結":{"docs":{},"果":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{},"次":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}},"コ":{"docs":{},"ア":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"セ":{"docs":{},"プ":{"docs":{},"ト":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":10.090909090909092}}}}}}}},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},"の":{"docs":{},"外":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"や":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"う":{"docs":{},"ま":{"docs":{},"く":{"docs":{},"扱":{"docs":{},"う":{"docs":{},"か":{"docs":{},"考":{"docs":{},"え":{"docs":{},"る":{"docs":{},"絶":{"docs":{},"好":{"docs":{},"の":{"docs":{},"機":{"docs":{},"会":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"が":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"取":{"docs":{},"り":{"docs":{},"出":{"docs":{},"す":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"も":{"docs":{},"し":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"が":{"docs":{},"変":{"docs":{},"化":{"docs":{},"し":{"docs":{},"た":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"は":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"か":{"docs":{},"つ":{"docs":{},"効":{"docs":{},"率":{"docs":{},"的":{"docs":{},"に":{"docs":{},"更":{"docs":{},"新":{"docs":{},"を":{"docs":{},"行":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"や":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"必":{"docs":{},"要":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"て":{"docs":{},"に":{"docs":{},"お":{"docs":{},"い":{"docs":{},"て":{"docs":{},"、":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"宣":{"docs":{},"言":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"繰":{"docs":{},"り":{"docs":{},"返":{"docs":{},"し":{"docs":{},"で":{"docs":{},"冗":{"docs":{},"長":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"に":{"docs":{},"対":{"docs":{},"処":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"算":{"docs":{},"出":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"生":{"docs":{},"成":{"docs":{},"し":{"docs":{},"、":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"キ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"省":{"docs":{},"く":{"docs":{},"の":{"docs":{},"に":{"docs":{},"役":{"docs":{},"立":{"docs":{},"つ":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"docs":{},"入":{"docs":{},"れ":{"docs":{},"る":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}},"は":{"docs":{},"ま":{"docs":{},"だ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"持":{"docs":{},"つ":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"動":{"docs":{},"的":{"docs":{},"に":{"docs":{},"更":{"docs":{},"新":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}},"を":{"docs":{},"つ":{"docs":{},"く":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"す":{"docs":{},"る":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"内":{"docs":{},"に":{"docs":{},"お":{"docs":{},"け":{"docs":{},"る":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}},"部":{"docs":{},"の":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"ス":{"docs":{},"ト":{"docs":{},"ラ":{"docs":{},"ク":{"docs":{},"タ":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091},"state.html":{"ref":"state.html","tf":10.005050505050505}},"の":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"を":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"ト":{"docs":{},"ア":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"の":{"docs":{},"作":{"docs":{},"成":{"docs":{},"は":{"docs":{},"、":{"docs":{},"と":{"docs":{},"て":{"docs":{},"も":{"docs":{},"簡":{"docs":{},"単":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"初":{"docs":{},"期":{"docs":{},"状":{"docs":{},"態":{"docs":{},"と":{"docs":{},"、":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"準":{"docs":{},"備":{"docs":{},"す":{"docs":{},"る":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"直":{"docs":{},"接":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"明":{"docs":{},"示":{"docs":{},"的":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"み":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"に":{"docs":{},"つ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"追":{"docs":{},"跡":{"docs":{},"可":{"docs":{},"能":{"docs":{},"な":{"docs":{},"記":{"docs":{},"録":{"docs":{},"を":{"docs":{},"残":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"保":{"docs":{},"証":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"動":{"docs":{},"作":{"docs":{},"の":{"docs":{},"理":{"docs":{},"解":{"docs":{},"を":{"docs":{},"助":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}},"た":{"docs":{},"め":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}},"サ":{"docs":{},"ブ":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"置":{"docs":{},"き":{"docs":{},"換":{"docs":{},"え":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"ハ":{"docs":{},"イ":{"docs":{},"ド":{"docs":{},"レ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"や":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"ム":{"docs":{},"ト":{"docs":{},"ラ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"に":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"は":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"な":{"docs":{},"の":{"docs":{},"で":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"内":{"docs":{},"で":{"docs":{},"使":{"docs":{},"う":{"docs":{},"に":{"docs":{},"は":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"内":{"docs":{},"で":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"返":{"docs":{},"せ":{"docs":{},"ば":{"docs":{},"良":{"docs":{},"い":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"行":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}},"追":{"docs":{},"加":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"予":{"docs":{},"測":{"docs":{},"で":{"docs":{},"き":{"docs":{},"な":{"docs":{},"い":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"が":{"docs":{},"気":{"docs":{},"に":{"docs":{},"な":{"docs":{},"る":{"docs":{},"か":{"docs":{},"も":{"docs":{},"し":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ユ":{"docs":{},"ー":{"docs":{},"ザ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"付":{"docs":{},"き":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"元":{"docs":{},"に":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"追":{"docs":{},"加":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"に":{"docs":{},"属":{"docs":{},"す":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"状":{"docs":{},"況":{"docs":{},"に":{"docs":{},"適":{"docs":{},"応":{"docs":{},"す":{"docs":{},"る":{"docs":{},"に":{"docs":{},"は":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"の":{"docs":{},"値":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{},"次":{"docs":{},"の":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"持":{"docs":{},"つ":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{},"第":{"docs":{},"一":{"docs":{},"引":{"docs":{},"数":{"docs":{},"に":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"が":{"docs":{},"作":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"後":{"docs":{},"に":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"初":{"docs":{},"期":{"docs":{},"化":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"呼":{"docs":{},"ば":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"へ":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"購":{"docs":{},"読":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"以":{"docs":{},"外":{"docs":{},"で":{"docs":{},"、":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"購":{"docs":{},"読":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"testing.html":{"ref":"testing.html","tf":10.002092050209205}},"の":{"docs":{},"実":{"docs":{},"行":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"フ":{"docs":{},"ォ":{"docs":{},"ー":{"docs":{},"ム":{"docs":{},"の":{"docs":{},"扱":{"docs":{},"い":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"forms.html":{"ref":"forms.html","tf":10.011363636363637}}}}}}}},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"中":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"デ":{"docs":{},"フ":{"docs":{},"ォ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"加":{"docs":{},"え":{"docs":{},"て":{"docs":{},"、":{"docs":{},"名":{"docs":{},"前":{"docs":{},"付":{"docs":{},"き":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"plugins.html":{"ref":"plugins.html","tf":10.004048582995951}},"が":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"に":{"docs":{},"付":{"docs":{},"属":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"管":{"docs":{},"理":{"docs":{},"に":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"値":{"docs":{},"を":{"docs":{},"取":{"docs":{},"得":{"docs":{},"し":{"docs":{},"、":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}},"開":{"docs":{},"発":{"docs":{},"者":{"docs":{},"向":{"docs":{},"け":{"docs":{},"の":{"docs":{},"注":{"docs":{},"意":{"docs":{},"事":{"docs":{},"項":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"の":{"docs":{},"配":{"docs":{},"列":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"に":{"docs":{},"適":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"を":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"、":{"docs":{},"外":{"docs":{},"部":{"docs":{},"へ":{"docs":{},"の":{"docs":{},"永":{"docs":{},"続":{"docs":{},"化":{"docs":{},"、":{"docs":{},"ロ":{"docs":{},"ギ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"、":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ギ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"監":{"docs":{},"視":{"docs":{},"す":{"docs":{},"る":{"docs":{},"か":{"docs":{},"、":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"は":{"docs":{},"、":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{},"、":{"docs":{},"単":{"docs":{},"一":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"つ":{"docs":{},"け":{"docs":{},"る":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"の":{"docs":{},"関":{"docs":{},"数":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}},"直":{"docs":{},"接":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"似":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"同":{"docs":{},"様":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"る":{"docs":{},"変":{"docs":{},"更":{"docs":{},"の":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"で":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"内":{"docs":{},"で":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}},"と":{"docs":{},"同":{"docs":{},"様":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"処":{"docs":{},"理":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}},"で":{"docs":{},"最":{"docs":{},"も":{"docs":{},"一":{"docs":{},"般":{"docs":{},"的":{"docs":{},"に":{"docs":{},"使":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"中":{"docs":{},"で":{"docs":{},"も":{"docs":{},"っ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"よ":{"docs":{},"く":{"docs":{},"利":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"サ":{"docs":{},"ル":{"docs":{},"の":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"持":{"docs":{},"つ":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ホ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"hot-reload.html":{"ref":"hot-reload.html","tf":10.01086956521739}},"を":{"docs":{},"試":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"付":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"す":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091},"mutations.html":{"ref":"mutations.html","tf":10.003571428571428}},"に":{"docs":{},"よ":{"docs":{},"る":{"docs":{},"状":{"docs":{},"態":{"docs":{},"変":{"docs":{},"更":{"docs":{},"は":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"時":{"docs":{},"点":{"docs":{},"で":{"docs":{},"行":{"docs":{},"わ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"す":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"で":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"な":{"docs":{},"い":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}},"、":{"docs":{},"`":{"docs":{},"{":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}},"完":{"docs":{},"全":{"docs":{},"に":{"docs":{},"引":{"docs":{},"数":{"docs":{},"に":{"docs":{},"依":{"docs":{},"存":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"の":{"docs":{},"関":{"docs":{},"数":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"の":{"docs":{},"が":{"docs":{},"と":{"docs":{},"て":{"docs":{},"も":{"docs":{},"簡":{"docs":{},"単":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"効":{"docs":{},"果":{"docs":{},"的":{"docs":{},"な":{"docs":{},"や":{"docs":{},"り":{"docs":{},"方":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"も":{"docs":{},"し":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"・":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"に":{"docs":{},"定":{"docs":{},"数":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"の":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"る":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"と":{"docs":{},"デ":{"docs":{},"ー":{"docs":{},"タ":{"docs":{},"ソ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"の":{"docs":{},"同":{"docs":{},"期":{"docs":{},"を":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"実":{"docs":{},"現":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"は":{"docs":{},"以":{"docs":{},"下":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"分":{"docs":{},"割":{"docs":{},"束":{"docs":{},"縛":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}},"を":{"docs":{},"記":{"docs":{},"録":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"`":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"適":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}},"す":{"docs":{},"る":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}},"や":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"適":{"docs":{},"切":{"docs":{},"に":{"docs":{},"書":{"docs":{},"か":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"適":{"docs":{},"切":{"docs":{},"に":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"化":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"後":{"docs":{},"、":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"は":{"docs":{},"ブ":{"docs":{},"ラ":{"docs":{},"ウ":{"docs":{},"ザ":{"docs":{},"の":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"と":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ホ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091},"modules.html":{"ref":"modules.html","tf":10.001694915254237},"structure.html":{"ref":"structure.html","tf":0.03389830508474576}},"シ":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ム":{"docs":{},"で":{"docs":{},"利":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"は":{"docs":{},"あ":{"docs":{},"ら":{"docs":{},"か":{"docs":{},"じ":{"docs":{},"め":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"化":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"と":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"ア":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"は":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"や":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"中":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"第":{"1":{"docs":{},"引":{"docs":{},"数":{"docs":{},"は":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"再":{"docs":{},"利":{"docs":{},"用":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"宣":{"docs":{},"言":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"単":{"docs":{},"純":{"docs":{},"な":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"参":{"docs":{},"照":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"共":{"docs":{},"有":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"変":{"docs":{},"更":{"docs":{},"時":{"docs":{},"に":{"docs":{},"ク":{"docs":{},"ロ":{"docs":{},"ス":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"/":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"汚":{"docs":{},"染":{"docs":{},"を":{"docs":{},"引":{"docs":{},"き":{"docs":{},"起":{"docs":{},"こ":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"(":{"docs":{},"例":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"自":{"docs":{},"己":{"docs":{},"完":{"docs":{},"結":{"docs":{},"型":{"docs":{},"に":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"再":{"docs":{},"利":{"docs":{},"用":{"docs":{},"可":{"docs":{},"能":{"docs":{},"な":{"docs":{},"も":{"docs":{},"の":{"docs":{},"に":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"す":{"docs":{},"る":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"し":{"docs":{},"、":{"docs":{},"ユ":{"docs":{},"ー":{"docs":{},"ザ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"を":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}}}}},"集":{"docs":{},"め":{"docs":{},"て":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"す":{"docs":{},"で":{"docs":{},"に":{"docs":{},"ネ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"お":{"docs":{},"り":{"docs":{},"、":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"影":{"docs":{},"響":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"定":{"docs":{},"義":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"の":{"docs":{},"仕":{"docs":{},"様":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}},"内":{"docs":{},"で":{"docs":{},"定":{"docs":{},"義":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ッ":{"docs":{},"ク":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}},"化":{"docs":{},"し":{"docs":{},"た":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"と":{"docs":{},"引":{"docs":{},"数":{"docs":{},"で":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}},"ユ":{"docs":{},"ー":{"docs":{},"ザ":{"docs":{},"向":{"docs":{},"け":{"docs":{},"は":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"@":{"3":{"docs":{},".":{"0":{"docs":{},"+":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}},"docs":{}}},"docs":{}}}}}}}}}}}}},"リ":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"レ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"api.html":{"ref":"api.html","tf":5.003164556962025}}}}}}},"リ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"ノ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}}}}},"ン":{"docs":{},"ク":{"docs":{},"が":{"docs":{},"提":{"docs":{},"供":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"上":{"docs":{},"記":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"ク":{"docs":{},"は":{"docs":{},"常":{"docs":{},"に":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"に":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"関":{"docs":{},"数":{"docs":{},"の":{"docs":{},"返":{"docs":{},"す":{"docs":{},"値":{"docs":{},"を":{"docs":{},"監":{"docs":{},"視":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"値":{"docs":{},"が":{"docs":{},"変":{"docs":{},"わ":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"入":{"docs":{},"門":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"getting-started.html":{"ref":"getting-started.html","tf":5.015873015873016}}}},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"strict.html":{"ref":"strict.html","tf":10.026315789473685}},"で":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"は":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"）":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"有":{"docs":{},"効":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"に":{"docs":{},"は":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{},"直":{"docs":{},"接":{"docs":{},"ク":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"し":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}},"の":{"docs":{},"良":{"docs":{},"い":{"docs":{},"引":{"docs":{},"用":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"参":{"docs":{},"照":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"は":{"docs":{},"、":{"docs":{},"通":{"docs":{},"常":{"docs":{},"の":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"使":{"docs":{},"わ":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"い":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"で":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"は":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"、":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"共":{"docs":{},"有":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"抽":{"docs":{},"出":{"docs":{},"し":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"管":{"docs":{},"理":{"docs":{},"す":{"docs":{},"る":{"docs":{},"の":{"docs":{},"は":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"か":{"docs":{},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"に":{"docs":{},"行":{"docs":{},"う":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"作":{"docs":{},"法":{"docs":{},"に":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"フ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"避":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"分":{"docs":{},"割":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"ぞ":{"docs":{},"れ":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"自":{"docs":{},"身":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"）":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"さ":{"docs":{},"え":{"docs":{},"も":{"docs":{},"内":{"docs":{},"包":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"（":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"ネ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"）":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}},"作":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"カ":{"docs":{},"ウ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"を":{"docs":{},"み":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"参":{"docs":{},"照":{"docs":{},"で":{"docs":{},"き":{"docs":{},"、":{"docs":{},"ま":{"docs":{},"た":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"か":{"docs":{},"な":{"docs":{},"り":{"docs":{},"単":{"docs":{},"純":{"docs":{},"に":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}},"状":{"docs":{},"態":{"docs":{},"や":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"な":{"docs":{},"ぜ":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"テ":{"docs":{},"キ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"が":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"も":{"docs":{},"の":{"docs":{},"で":{"docs":{},"は":{"docs":{},"な":{"docs":{},"い":{"docs":{},"の":{"docs":{},"か":{"docs":{},"は":{"docs":{},"、":{"docs":{},"後":{"docs":{},"ほ":{"docs":{},"ど":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"説":{"docs":{},"明":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},")":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}},"各":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"参":{"docs":{},"照":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"効":{"docs":{},"に":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},")":{"docs":{},"、":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"子":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"内":{"docs":{},"で":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"い":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"を":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"異":{"docs":{},"な":{"docs":{},"る":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"の":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"を":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"が":{"docs":{},"解":{"docs":{},"決":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"解":{"docs":{},"決":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"ユ":{"docs":{},"ー":{"docs":{},"ザ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"入":{"docs":{},"力":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"直":{"docs":{},"接":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}},"ニ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"主":{"docs":{},"な":{"docs":{},"部":{"docs":{},"分":{"docs":{},"は":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"実":{"docs":{},"行":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"バ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"き":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"直":{"docs":{},"接":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"実":{"docs":{},"行":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"別":{"docs":{},"の":{"docs":{},"方":{"docs":{},"法":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"本":{"docs":{},"当":{"docs":{},"の":{"docs":{},"ブ":{"docs":{},"ラ":{"docs":{},"ウ":{"docs":{},"ザ":{"docs":{},"で":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"実":{"docs":{},"行":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"は":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"新":{"docs":{},"規":{"docs":{},"追":{"docs":{},"加":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"バ":{"docs":{},"ー":{"docs":{},"ジ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"/":{"docs":{},"タ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"に":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"の":{"docs":{},"で":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"監":{"docs":{},"視":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"に":{"docs":{},"分":{"docs":{},"け":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"が":{"docs":{},"登":{"docs":{},"録":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"と":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"お":{"docs":{},"よ":{"docs":{},"び":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"て":{"docs":{},"が":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"が":{"docs":{},"登":{"docs":{},"録":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"パ":{"docs":{},"ス":{"docs":{},"に":{"docs":{},"基":{"docs":{},"づ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"自":{"docs":{},"動":{"docs":{},"的":{"docs":{},"に":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"に":{"docs":{},"入":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}},"せ":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"、":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"ひ":{"docs":{},"と":{"docs":{},"つ":{"docs":{},"に":{"docs":{},"マ":{"docs":{},"ー":{"docs":{},"ジ":{"docs":{},"す":{"docs":{},"る":{"docs":{},"ユ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"リ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"使":{"docs":{},"わ":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"い":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"、":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"プ":{"docs":{},"レ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"演":{"docs":{},"算":{"docs":{},"子":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"置":{"docs":{},"く":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"が":{"docs":{},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"明":{"docs":{},"示":{"docs":{},"的":{"docs":{},"、":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"可":{"docs":{},"能":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"が":{"docs":{},"、":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"冗":{"docs":{},"長":{"docs":{},"で":{"docs":{},"ま":{"docs":{},"わ":{"docs":{},"り":{"docs":{},"く":{"docs":{},"ど":{"docs":{},"い":{"docs":{},"も":{"docs":{},"の":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"一":{"docs":{},"部":{"docs":{},"が":{"docs":{},"ひ":{"docs":{},"と":{"docs":{},"つ":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"に":{"docs":{},"属":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"残":{"docs":{},"し":{"docs":{},"て":{"docs":{},"お":{"docs":{},"く":{"docs":{},"と":{"docs":{},"よ":{"docs":{},"い":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ト":{"docs":{},"レ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"オ":{"docs":{},"フ":{"docs":{},"を":{"docs":{},"考":{"docs":{},"慮":{"docs":{},"し":{"docs":{},"た":{"docs":{},"上":{"docs":{},"で":{"docs":{},"、":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ニ":{"docs":{},"ー":{"docs":{},"ズ":{"docs":{},"に":{"docs":{},"合":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"決":{"docs":{},"定":{"docs":{},"を":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"き":{"docs":{},"換":{"docs":{},"え":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"す":{"docs":{},"る":{"docs":{},"に":{"docs":{},"は":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"す":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"よ":{"docs":{},"い":{"docs":{},"の":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"？":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}},"マ":{"docs":{},"ッ":{"docs":{},"ピ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}},"す":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.014285714285714285},"actions.html":{"ref":"actions.html","tf":0.013793103448275862}}}}}}}}},"組":{"docs":{},"み":{"docs":{},"込":{"docs":{},"む":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}},"第":{"3":{"docs":{},"引":{"docs":{},"数":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"気":{"docs":{},"付":{"docs":{},"か":{"docs":{},"せ":{"docs":{},"な":{"docs":{},"い":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"（":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},"）":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"追":{"docs":{},"加":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"追":{"docs":{},"加":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"は":{"docs":{},"、":{"docs":{},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"対":{"docs":{},"す":{"docs":{},"る":{"docs":{},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"と":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{},"、":{"docs":{},"一":{"docs":{},"般":{"docs":{},"的":{"docs":{},"な":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"に":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"用":{"docs":{},"途":{"docs":{},"の":{"docs":{},"備":{"docs":{},"え":{"docs":{},"付":{"docs":{},"け":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"す":{"docs":{},"る":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"一":{"docs":{},"部":{"docs":{},"で":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"直":{"docs":{},"接":{"docs":{},"依":{"docs":{},"存":{"docs":{},"関":{"docs":{},"係":{"docs":{},"を":{"docs":{},"持":{"docs":{},"つ":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"な":{"docs":{},"い":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"し":{"docs":{},"た":{"docs":{},"が":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"単":{"docs":{},"純":{"docs":{},"に":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"3":{"docs":{},"番":{"docs":{},"目":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"あ":{"docs":{},"と":{"docs":{},"で":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}},"外":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"デ":{"docs":{},"ー":{"docs":{},"タ":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"最":{"docs":{},"新":{"docs":{},"の":{"docs":{},"リ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"指":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"@":{"2":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"作":{"docs":{},"者":{"docs":{},"、":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}},"粒":{"docs":{},"度":{"docs":{},"の":{"docs":{},"細":{"docs":{},"か":{"docs":{},"い":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ビ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"シ":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ム":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"特":{"docs":{},"別":{"docs":{},"に":{"docs":{},"調":{"docs":{},"整":{"docs":{},"し":{"docs":{},"て":{"docs":{},"実":{"docs":{},"装":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ラ":{"docs":{},"イ":{"docs":{},"ブ":{"docs":{},"ラ":{"docs":{},"リ":{"docs":{},"だ":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"背":{"docs":{},"景":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"基":{"docs":{},"本":{"docs":{},"的":{"docs":{},"な":{"docs":{},"ア":{"docs":{},"イ":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ア":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"、":{"docs":{},"f":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{},"、":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}},"コ":{"docs":{},"ア":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"セ":{"docs":{},"プ":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"つ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"詳":{"docs":{},"し":{"docs":{},"く":{"docs":{},"説":{"docs":{},"明":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ま":{"docs":{},"ず":{"docs":{},"は":{"docs":{},"状":{"docs":{},"態":{"docs":{},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"）":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"は":{"docs":{},"じ":{"docs":{},"め":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"以":{"docs":{},"下":{"docs":{},"を":{"docs":{},"学":{"docs":{},"習":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}}},"シ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}},"中":{"docs":{},"に":{"docs":{},"置":{"docs":{},"く":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"、":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"わ":{"docs":{},"け":{"docs":{},"で":{"docs":{},"は":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"多":{"docs":{},"く":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}},"実":{"docs":{},"装":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}},"更":{"docs":{},"新":{"docs":{},"を":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"）":{"docs":{},"を":{"docs":{},"第":{"1":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"取":{"docs":{},"得":{"docs":{},"し":{"docs":{},"、":{"docs":{},"実":{"docs":{},"際":{"docs":{},"に":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"行":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}},"が":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"の":{"docs":{},"外":{"docs":{},"部":{"docs":{},"で":{"docs":{},"変":{"docs":{},"更":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"エ":{"docs":{},"ラ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"投":{"docs":{},"げ":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"で":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"変":{"docs":{},"更":{"docs":{},"が":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ギ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"明":{"docs":{},"示":{"docs":{},"的":{"docs":{},"に":{"docs":{},"追":{"docs":{},"跡":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"保":{"docs":{},"証":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"と":{"docs":{},"、":{"docs":{},"エ":{"docs":{},"ラ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"投":{"docs":{},"げ":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"唯":{"docs":{},"一":{"docs":{},"の":{"docs":{},"方":{"docs":{},"法":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"プ":{"docs":{},"レ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"（":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"が":{"docs":{},"呼":{"docs":{},"ば":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"\"":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{},"、":{"docs":{},"通":{"docs":{},"常":{"docs":{},"の":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}},"イ":{"docs":{},"ベ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"と":{"docs":{},"て":{"docs":{},"も":{"docs":{},"近":{"docs":{},"い":{"docs":{},"概":{"docs":{},"念":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"内":{"docs":{},"部":{"docs":{},"で":{"docs":{},"処":{"docs":{},"理":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"な":{"docs":{},"い":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"エ":{"docs":{},"ラ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"投":{"docs":{},"げ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"な":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"則":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}},"注":{"docs":{},"入":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"）":{"docs":{},"で":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"内":{"docs":{},"で":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"す":{"docs":{},"）":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"名":{"docs":{},"（":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"し":{"docs":{},"と":{"docs":{},"、":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"引":{"docs":{},"数":{"docs":{},"分":{"docs":{},"割":{"docs":{},"束":{"docs":{},"縛":{"docs":{},"（":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"s":{"docs":{},"s":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"形":{"docs":{},"式":{"docs":{},"で":{"docs":{},"ロ":{"docs":{},"グ":{"docs":{},"出":{"docs":{},"力":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"有":{"docs":{},"用":{"docs":{},"な":{"docs":{},"機":{"docs":{},"能":{"docs":{},"が":{"docs":{},"使":{"docs":{},"え":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"代":{"docs":{},"わ":{"docs":{},"り":{"docs":{},"に":{"docs":{},"、":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"で":{"docs":{},"双":{"docs":{},"方":{"docs":{},"向":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"を":{"docs":{},"使":{"docs":{},"う":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"チ":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"値":{"docs":{},"を":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"し":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"て":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"出":{"docs":{},"力":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"こ":{"docs":{},"で":{"docs":{},"は":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}},"設":{"docs":{},"定":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"（":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"m":{"docs":{},".":{"docs":{},"$":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"と":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"受":{"docs":{},"け":{"docs":{},"付":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"2":{"docs":{},"番":{"docs":{},"目":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}},"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093},"mutations.html":{"ref":"mutations.html","tf":0.010714285714285714},"actions.html":{"ref":"actions.html","tf":0.010344827586206896},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"取":{"docs":{},"り":{"docs":{},"込":{"docs":{},"む":{"docs":{},"と":{"docs":{},"自":{"docs":{},"動":{"docs":{},"的":{"docs":{},"に":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}},"明":{"docs":{},"示":{"docs":{},"的":{"docs":{},"に":{"docs":{},"導":{"docs":{},"入":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}},"自":{"docs":{},"身":{"docs":{},"で":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}},"導":{"docs":{},"入":{"docs":{},"し":{"docs":{},"た":{"docs":{},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{},"冗":{"docs":{},"長":{"docs":{},"で":{"docs":{},"恐":{"docs":{},"ろ":{"docs":{},"し":{"docs":{},"い":{"docs":{},"と":{"docs":{},"感":{"docs":{},"じ":{"docs":{},"る":{"docs":{},"か":{"docs":{},"も":{"docs":{},"し":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"う":{"docs":{},"感":{"docs":{},"じ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"全":{"docs":{},"く":{"docs":{},"普":{"docs":{},"通":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"が":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"構":{"docs":{},"築":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"な":{"docs":{},"く":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ー":{"docs":{},"ル":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}},"使":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"最":{"docs":{},"も":{"docs":{},"基":{"docs":{},"本":{"docs":{},"的":{"docs":{},"な":{"docs":{},"カ":{"docs":{},"ウ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"の":{"docs":{},"例":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}},"ブ":{"docs":{},"ラ":{"docs":{},"ウ":{"docs":{},"ザ":{"docs":{},"で":{"docs":{},"の":{"docs":{},"実":{"docs":{},"行":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"不":{"docs":{},"要":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"処":{"docs":{},"理":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"化":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"依":{"docs":{},"存":{"docs":{},"関":{"docs":{},"係":{"docs":{},"を":{"docs":{},"注":{"docs":{},"入":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"バ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ル":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"た":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"不":{"docs":{},"可":{"docs":{},"欠":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091}}}}}}}}}}}}},"。":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"い":{"docs":{},"は":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"次":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"組":{"docs":{},"み":{"docs":{},"合":{"docs":{},"わ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"を":{"docs":{},"行":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"間":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"ホ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"サ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"付":{"docs":{},"け":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"指":{"docs":{},"定":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"の":{"docs":{},"値":{"docs":{},"に":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"新":{"docs":{},"し":{"docs":{},"い":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"持":{"docs":{},"つ":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"返":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}},"の":{"docs":{},"は":{"docs":{},"少":{"docs":{},"し":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ッ":{"docs":{},"キ":{"docs":{},"ー":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"次":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"書":{"docs":{},"く":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"例":{"docs":{},"で":{"docs":{},"す":{"docs":{},"（":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"の":{"docs":{},"好":{"docs":{},"き":{"docs":{},"な":{"docs":{},"任":{"docs":{},"意":{"docs":{},"の":{"docs":{},"フ":{"docs":{},"レ":{"docs":{},"ー":{"docs":{},"ム":{"docs":{},"ワ":{"docs":{},"ー":{"docs":{},"ク":{"docs":{},"/":{"docs":{},"ア":{"docs":{},"サ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ラ":{"docs":{},"イ":{"docs":{},"ブ":{"docs":{},"ラ":{"docs":{},"リ":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"）":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"う":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"、":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"確":{"docs":{},"認":{"docs":{},"し":{"docs":{},"て":{"docs":{},"お":{"docs":{},"い":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"な":{"docs":{},"い":{"docs":{},"の":{"docs":{},"か":{"docs":{},"、":{"docs":{},"と":{"docs":{},"。":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"で":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"な":{"docs":{},"い":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"の":{"docs":{},"を":{"docs":{},"覚":{"docs":{},"え":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"か":{"docs":{},"？":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"そ":{"docs":{},"う":{"docs":{},"で":{"docs":{},"は":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"中":{"docs":{},"で":{"docs":{},"は":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"の":{"docs":{},"操":{"docs":{},"作":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"す":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"い":{"docs":{},"は":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"能":{"docs":{},"性":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"も":{"docs":{},"少":{"docs":{},"し":{"docs":{},"注":{"docs":{},"意":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"通":{"docs":{},"常":{"docs":{},"、":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"段":{"docs":{},"階":{"docs":{},"で":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"作":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"せ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"動":{"docs":{},"的":{"docs":{},"に":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"た":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"削":{"docs":{},"除":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"し":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"作":{"docs":{},"成":{"docs":{},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"直":{"docs":{},"接":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"代":{"docs":{},"わ":{"docs":{},"り":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"理":{"docs":{},"由":{"docs":{},"は":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"明":{"docs":{},"確":{"docs":{},"に":{"docs":{},"追":{"docs":{},"跡":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"規":{"docs":{},"約":{"docs":{},"は":{"docs":{},"、":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"の":{"docs":{},"意":{"docs":{},"図":{"docs":{},"を":{"docs":{},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"明":{"docs":{},"確":{"docs":{},"に":{"docs":{},"し":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"読":{"docs":{},"ん":{"docs":{},"だ":{"docs":{},"時":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"に":{"docs":{},"つ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"、":{"docs":{},"論":{"docs":{},"理":{"docs":{},"的":{"docs":{},"に":{"docs":{},"考":{"docs":{},"え":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"加":{"docs":{},"え":{"docs":{},"て":{"docs":{},"、":{"docs":{},"私":{"docs":{},"た":{"docs":{},"ち":{"docs":{},"に":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"取":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"り":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"取":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"り":{"docs":{},"、":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"ム":{"docs":{},"ト":{"docs":{},"ラ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"実":{"docs":{},"装":{"docs":{},"す":{"docs":{},"る":{"docs":{},"余":{"docs":{},"地":{"docs":{},"を":{"docs":{},"与":{"docs":{},"え":{"docs":{},"て":{"docs":{},"く":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"内":{"docs":{},"に":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"言":{"docs":{},"い":{"docs":{},"換":{"docs":{},"え":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"接":{"docs":{},"頭":{"docs":{},"辞":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"義":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"ら":{"docs":{},"を":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"と":{"docs":{},"考":{"docs":{},"え":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"と":{"docs":{},"同":{"docs":{},"様":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"結":{"docs":{},"果":{"docs":{},"は":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"依":{"docs":{},"存":{"docs":{},"関":{"docs":{},"係":{"docs":{},"に":{"docs":{},"基":{"docs":{},"づ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"計":{"docs":{},"算":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"依":{"docs":{},"存":{"docs":{},"関":{"docs":{},"係":{"docs":{},"の":{"docs":{},"一":{"docs":{},"部":{"docs":{},"が":{"docs":{},"変":{"docs":{},"更":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"の":{"docs":{},"み":{"docs":{},"再":{"docs":{},"評":{"docs":{},"価":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"処":{"docs":{},"理":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"と":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}},"複":{"docs":{},"数":{"docs":{},"回":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"）":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}},"返":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}},"を":{"docs":{},"想":{"docs":{},"定":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}},"書":{"docs":{},"き":{"docs":{},"込":{"docs":{},"ま":{"docs":{},"ず":{"docs":{},"に":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"ア":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"切":{"docs":{},"り":{"docs":{},"替":{"docs":{},"え":{"docs":{},"は":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"に":{"docs":{},"は":{"docs":{},"影":{"docs":{},"響":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"活":{"docs":{},"用":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}},"渡":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}},"統":{"docs":{},"合":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}},"調":{"docs":{},"べ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003389830508474576}}}}}},"み":{"docs":{},"て":{"docs":{},"み":{"docs":{},"る":{"docs":{},"の":{"docs":{},"も":{"docs":{},"よ":{"docs":{},"い":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}},"比":{"docs":{},"較":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}},"作":{"docs":{},"成":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"、":{"docs":{},"た":{"docs":{},"だ":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}},"指":{"docs":{},"定":{"docs":{},"す":{"docs":{},"る":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}},"変":{"docs":{},"更":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"は":{"docs":{},"明":{"docs":{},"示":{"docs":{},"的":{"docs":{},"に":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}}}}}},"開":{"docs":{},"く":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}},"始":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"追":{"docs":{},"加":{"docs":{},"し":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"な":{"docs":{},"い":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}},"含":{"docs":{},"む":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"は":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"キ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"結":{"docs":{},"合":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"は":{"docs":{},"、":{"docs":{},"第":{"docs":{},"一":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"代":{"docs":{},"わ":{"docs":{},"り":{"docs":{},"に":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"常":{"docs":{},"に":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"(":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"で":{"docs":{},"定":{"docs":{},"義":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},")":{"docs":{},"、":{"docs":{},"指":{"docs":{},"定":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"第":{"docs":{},"二":{"docs":{},"引":{"docs":{},"数":{"docs":{},"に":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"持":{"docs":{},"つ":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"サ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"サ":{"docs":{},"イ":{"docs":{},"ド":{"docs":{},"レ":{"docs":{},"ン":{"docs":{},"ダ":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"に":{"docs":{},"役":{"docs":{},"立":{"docs":{},"ち":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}},"最":{"docs":{},"初":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"ス":{"docs":{},"ク":{"docs":{},"リ":{"docs":{},"プ":{"docs":{},"ト":{"docs":{},"タ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"に":{"docs":{},"は":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"は":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"イ":{"docs":{},"ベ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"バ":{"docs":{},"ス":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"と":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"使":{"docs":{},"い":{"docs":{},"た":{"docs":{},"い":{"docs":{},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ベ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"の":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}},"開":{"docs":{},"発":{"docs":{},"版":{"docs":{},"ビ":{"docs":{},"ル":{"docs":{},"ド":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01639344262295082}}}}}},"環":{"docs":{},"境":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}},"い":{"docs":{},"つ":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"を":{"docs":{},"使":{"docs":{},"う":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"か":{"docs":{},"？":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}},"ま":{"docs":{},"、":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"見":{"docs":{},"な":{"docs":{},"が":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"行":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"を":{"docs":{},"想":{"docs":{},"像":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"ロ":{"docs":{},"グ":{"docs":{},"に":{"docs":{},"記":{"docs":{},"録":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"前":{"docs":{},"後":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"捕":{"docs":{},"捉":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"、":{"docs":{},"上":{"docs":{},"の":{"docs":{},"例":{"docs":{},"に":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"内":{"docs":{},"の":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"は":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ろ":{"docs":{},"い":{"docs":{},"ろ":{"docs":{},"な":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}},"こ":{"docs":{},"れ":{"docs":{},"が":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}},"に":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"は":{"docs":{},"大":{"docs":{},"き":{"docs":{},"な":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"が":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"/":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"に":{"docs":{},"反":{"docs":{},"応":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"要":{"docs":{},"素":{"docs":{},"を":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"自":{"docs":{},"身":{"docs":{},"に":{"docs":{},"含":{"docs":{},"ん":{"docs":{},"で":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}},"予":{"docs":{},"測":{"docs":{},"可":{"docs":{},"能":{"docs":{},"な":{"docs":{},"方":{"docs":{},"法":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"み":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"異":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"保":{"docs":{},"証":{"docs":{},"し":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"内":{"docs":{},"の":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"の":{"docs":{},"集":{"docs":{},"中":{"docs":{},"型":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"機":{"docs":{},"能":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"見":{"docs":{},"ば":{"docs":{},"か":{"docs":{},"げ":{"docs":{},"て":{"docs":{},"見":{"docs":{},"え":{"docs":{},"る":{"docs":{},"か":{"docs":{},"も":{"docs":{},"し":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"つ":{"docs":{},"ま":{"docs":{},"り":{"docs":{},"、":{"docs":{},"カ":{"docs":{},"ウ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ク":{"docs":{},"リ":{"docs":{},"メ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"し":{"docs":{},"て":{"docs":{},"直":{"docs":{},"接":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"実":{"docs":{},"際":{"docs":{},"に":{"docs":{},"は":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"ら":{"docs":{},"は":{"docs":{},"\"":{"docs":{},"単":{"docs":{},"方":{"docs":{},"向":{"docs":{},"デ":{"docs":{},"ー":{"docs":{},"タ":{"docs":{},"フ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"\"":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"セ":{"docs":{},"プ":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"極":{"docs":{},"め":{"docs":{},"て":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"責":{"docs":{},"務":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"セ":{"docs":{},"プ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"深":{"docs":{},"く":{"docs":{},"理":{"docs":{},"解":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091}}}}}}}}}}}}}}}}}}}}}},"ル":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"従":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"限":{"docs":{},"り":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"ど":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"構":{"docs":{},"造":{"docs":{},"化":{"docs":{},"す":{"docs":{},"る":{"docs":{},"か":{"docs":{},"は":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"次":{"docs":{},"第":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"も":{"docs":{},"し":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"が":{"docs":{},"大":{"docs":{},"き":{"docs":{},"く":{"docs":{},"な":{"docs":{},"り":{"docs":{},"過":{"docs":{},"ぎ":{"docs":{},"た":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"単":{"docs":{},"純":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"や":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"ぞ":{"docs":{},"れ":{"docs":{},"別":{"docs":{},"の":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"切":{"docs":{},"り":{"docs":{},"出":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}},"で":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}},"ち":{"docs":{},"ら":{"docs":{},"が":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}},"の":{"docs":{},"章":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091}}}}}}}}}},"機":{"docs":{},"能":{"docs":{},"は":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"に":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"・":{"docs":{},"フ":{"docs":{},"ィ":{"docs":{},"ル":{"docs":{},"タ":{"docs":{},"が":{"docs":{},"実":{"docs":{},"装":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"後":{"docs":{},"に":{"docs":{},"非":{"docs":{},"推":{"docs":{},"奨":{"docs":{},"に":{"docs":{},"な":{"docs":{},"る":{"docs":{},"予":{"docs":{},"定":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"第":{"1":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"文":{"docs":{},"字":{"docs":{},"列":{"docs":{},"を":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"テ":{"docs":{},"キ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"使":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"上":{"docs":{},"記":{"docs":{},"は":{"docs":{},"次":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"単":{"docs":{},"純":{"docs":{},"化":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}},"こ":{"docs":{},"で":{"docs":{},"は":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"管":{"docs":{},"理":{"docs":{},"に":{"docs":{},"関":{"docs":{},"わ":{"docs":{},"る":{"docs":{},"概":{"docs":{},"念":{"docs":{},"を":{"docs":{},"定":{"docs":{},"義":{"docs":{},"、":{"docs":{},"分":{"docs":{},"離":{"docs":{},"し":{"docs":{},"、":{"docs":{},"特":{"docs":{},"定":{"docs":{},"の":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"敷":{"docs":{},"く":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"の":{"docs":{},"構":{"docs":{},"造":{"docs":{},"と":{"docs":{},"保":{"docs":{},"守":{"docs":{},"性":{"docs":{},"を":{"docs":{},"向":{"docs":{},"上":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"を":{"docs":{},"ネ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"、":{"docs":{},"単":{"docs":{},"純":{"docs":{},"さ":{"docs":{},"は":{"docs":{},"、":{"docs":{},"共":{"docs":{},"通":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"共":{"docs":{},"有":{"docs":{},"す":{"docs":{},"る":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"持":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"、":{"docs":{},"す":{"docs":{},"ぐ":{"docs":{},"に":{"docs":{},"破":{"docs":{},"綻":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"こ":{"docs":{},"の":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"が":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"依":{"docs":{},"存":{"docs":{},"し":{"docs":{},"て":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"て":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"つ":{"docs":{},"く":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872},"api.html":{"ref":"api.html","tf":0.0031645569620253164}},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"こ":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}},"れ":{"docs":{},"ら":{"docs":{},"が":{"docs":{},"必":{"docs":{},"要":{"docs":{},"に":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"知":{"docs":{},"る":{"docs":{},"の":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"始":{"docs":{},"め":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"！":{"docs":{"core-concepts.html":{"ref":"core-concepts.html","tf":0.09090909090909091}}}}}}}}}}}},"な":{"docs":{},"り":{"docs":{},"に":{"docs":{},"手":{"docs":{},"の":{"docs":{},"込":{"docs":{},"ん":{"docs":{},"だ":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"活":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"出":{"docs":{},"て":{"docs":{},"き":{"docs":{},"そ":{"docs":{},"う":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"構":{"docs":{},"造":{"docs":{},"の":{"docs":{},"例":{"docs":{},"は":{"docs":{},"以":{"docs":{},"下":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ぞ":{"docs":{},"れ":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"後":{"docs":{},"に":{"docs":{},"呼":{"docs":{},"ば":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"に":{"docs":{},"対":{"docs":{},"処":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"の":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{},"下":{"docs":{},"記":{"docs":{},"コ":{"docs":{},"マ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"実":{"docs":{},"行":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"時":{"docs":{},"点":{"docs":{},"で":{"docs":{},"は":{"docs":{},"ま":{"docs":{},"だ":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"が":{"docs":{},"実":{"docs":{},"際":{"docs":{},"に":{"docs":{},"い":{"docs":{},"つ":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"か":{"docs":{},"を":{"docs":{},"、":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"知":{"docs":{},"る":{"docs":{},"術":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"い":{"docs":{},"か":{"docs":{},"な":{"docs":{},"る":{"docs":{},"状":{"docs":{},"態":{"docs":{},"変":{"docs":{},"更":{"docs":{},"で":{"docs":{},"も":{"docs":{},"、":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"内":{"docs":{},"で":{"docs":{},"起":{"docs":{},"き":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"本":{"docs":{},"質":{"docs":{},"的":{"docs":{},"に":{"docs":{},"追":{"docs":{},"跡":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"場":{"docs":{},"合":{"docs":{},"に":{"docs":{},"役":{"docs":{},"立":{"docs":{},"て":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"な":{"docs":{},"し":{"docs":{},"で":{"docs":{},"問":{"docs":{},"題":{"docs":{},"な":{"docs":{},"い":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"単":{"docs":{},"純":{"docs":{},"な":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}},"は":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}},"、":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}},"共":{"docs":{},"有":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"管":{"docs":{},"理":{"docs":{},"に":{"docs":{},"役":{"docs":{},"立":{"docs":{},"ち":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"が":{"docs":{},"、":{"docs":{},"さ":{"docs":{},"ら":{"docs":{},"に":{"docs":{},"概":{"docs":{},"念":{"docs":{},"や":{"docs":{},"ボ":{"docs":{},"イ":{"docs":{},"ラ":{"docs":{},"ー":{"docs":{},"プ":{"docs":{},"レ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"が":{"docs":{},"か":{"docs":{},"か":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"、":{"docs":{},"短":{"docs":{},"期":{"docs":{},"的":{"docs":{},"生":{"docs":{},"産":{"docs":{},"性":{"docs":{},"と":{"docs":{},"長":{"docs":{},"期":{"docs":{},"的":{"docs":{},"生":{"docs":{},"産":{"docs":{},"性":{"docs":{},"の":{"docs":{},"ト":{"docs":{},"レ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"オ":{"docs":{},"フ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"基":{"docs":{},"本":{"docs":{},"的":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"（":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"）":{"docs":{},"を":{"docs":{},"保":{"docs":{},"持":{"docs":{},"す":{"docs":{},"る":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"テ":{"docs":{},"ナ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"単":{"docs":{},"純":{"docs":{},"な":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"の":{"docs":{},"違":{"docs":{},"い":{"docs":{},"が":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}},"各":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"へ":{"docs":{},"の":{"docs":{},"フ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"公":{"docs":{},"開":{"docs":{},"す":{"docs":{},"る":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"後":{"docs":{},"に":{"docs":{},"呼":{"docs":{},"ば":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"効":{"docs":{},"率":{"docs":{},"的":{"docs":{},"な":{"docs":{},"更":{"docs":{},"新":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}},"自":{"docs":{},"然":{"docs":{},"な":{"docs":{},"次":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"と":{"docs":{},"な":{"docs":{},"る":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"返":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"注":{"docs":{},"意":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"や":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"他":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"と":{"docs":{},"組":{"docs":{},"み":{"docs":{},"合":{"docs":{},"わ":{"docs":{},"せ":{"docs":{},"る":{"docs":{},"の":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"か":{"docs":{},"？":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"リ":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ブ":{"docs":{},"な":{"docs":{},"の":{"docs":{},"で":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"\"":{"docs":{},"取":{"docs":{},"り":{"docs":{},"出":{"docs":{},"す":{"docs":{},"\"":{"docs":{},"一":{"docs":{},"番":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"方":{"docs":{},"法":{"docs":{},"は":{"docs":{},"、":{"docs":{},"単":{"docs":{},"純":{"docs":{},"に":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"単":{"docs":{},"一":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"サ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}},"成":{"docs":{},"功":{"docs":{},"時":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"と":{"docs":{},"失":{"docs":{},"敗":{"docs":{},"時":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}},"こ":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ラ":{"docs":{},"イ":{"docs":{},"ズ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"関":{"docs":{},"数":{"docs":{},"の":{"docs":{},"第":{"3":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"第":{"4":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"関":{"docs":{},"数":{"docs":{},"に":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}},"docs":{}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{},"で":{"docs":{},"き":{"docs":{},"、":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"は":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}},"実":{"docs":{},"際":{"docs":{},"の":{"docs":{},"と":{"docs":{},"こ":{"docs":{},"ろ":{"docs":{},"、":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"が":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"構":{"docs":{},"造":{"docs":{},"化":{"docs":{},"す":{"docs":{},"る":{"docs":{},"方":{"docs":{},"法":{"docs":{},"を":{"docs":{},"制":{"docs":{},"限":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"も":{"docs":{},"っ":{"docs":{},"と":{"docs":{},"正":{"docs":{},"確":{"docs":{},"に":{"docs":{},"言":{"docs":{},"う":{"docs":{},"と":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"高":{"docs":{},"い":{"docs":{},"レ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"原":{"docs":{},"理":{"docs":{},"原":{"docs":{},"則":{"docs":{},"を":{"docs":{},"適":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ご":{"docs":{},"と":{"docs":{},"に":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"記":{"docs":{},"述":{"docs":{},"子":{"docs":{},"と":{"docs":{},"現":{"docs":{},"在":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"引":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"前":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"保":{"docs":{},"存":{"docs":{},"す":{"docs":{},"る":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"付":{"docs":{},"き":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"で":{"docs":{"api.html":{"ref":"api.html","tf":0.006329113924050633}}}}}}}}}}}}}}},"ま":{"docs":{},"た":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306},"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},"別":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"下":{"docs":{},"記":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"書":{"docs":{},"く":{"docs":{},"と":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"中":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"第":{"3":{"docs":{},"引":{"docs":{},"数":{"docs":{},"で":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288},"forms.html":{"ref":"forms.html","tf":0.011363636363636364},"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"ず":{"docs":{},"知":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"お":{"docs":{},"く":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"も":{"docs":{},"し":{"docs":{},"、":{"docs":{},"あ":{"docs":{},"な":{"docs":{},"た":{"docs":{},"が":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}},"大":{"docs":{},"規":{"docs":{},"模":{"docs":{},"な":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}},"触":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"ぜ":{"docs":{},"ひ":{"docs":{},"触":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"！":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}}}}}},"こ":{"docs":{},"の":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"利":{"docs":{},"用":{"docs":{},"し":{"docs":{},"た":{"docs":{},"く":{"docs":{},"な":{"docs":{},"っ":{"docs":{},"た":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ピ":{"docs":{},"ー":{"docs":{},"す":{"docs":{},"る":{"docs":{},"か":{"docs":{},"、":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"い":{"docs":{},"は":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"共":{"docs":{},"用":{"docs":{},"の":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"切":{"docs":{},"り":{"docs":{},"出":{"docs":{},"し":{"docs":{},"て":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"場":{"docs":{},"所":{"docs":{},"で":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"ち":{"docs":{},"ら":{"docs":{},"も":{"docs":{},"理":{"docs":{},"想":{"docs":{},"的":{"docs":{},"と":{"docs":{},"は":{"docs":{},"い":{"docs":{},"え":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"複":{"docs":{},"雑":{"docs":{},"な":{"docs":{},"計":{"docs":{},"算":{"docs":{},"を":{"docs":{},"行":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"書":{"docs":{},"く":{"docs":{},"価":{"docs":{},"値":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"は":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"と":{"docs":{},"同":{"docs":{},"様":{"docs":{},"の":{"docs":{},"理":{"docs":{},"由":{"docs":{},"で":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"し":{"docs":{},"や":{"docs":{},"す":{"docs":{},"い":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ま":{"docs":{},"た":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"サ":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"あ":{"docs":{},"わ":{"docs":{},"せ":{"docs":{},"て":{"docs":{},"使":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"）":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"指":{"docs":{},"す":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}},"ビ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"の":{"docs":{},"宣":{"docs":{},"言":{"docs":{},"的":{"docs":{},"な":{"docs":{},"マ":{"docs":{},"ッ":{"docs":{},"ピ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}},"ル":{"docs":{},"ト":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ロ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}},"ラ":{"docs":{},"イ":{"docs":{},"ブ":{"docs":{},"ラ":{"docs":{},"リ":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}},"は":{"docs":{},"眼":{"docs":{},"鏡":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"も":{"docs":{},"の":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}},"、":{"docs":{},"動":{"docs":{},"的":{"docs":{},"に":{"docs":{},"付":{"docs":{},"属":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"た":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"内":{"docs":{},"部":{"docs":{},"で":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"管":{"docs":{},"理":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"公":{"docs":{},"式":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"拡":{"docs":{},"張":{"docs":{},"と":{"docs":{},"連":{"docs":{},"携":{"docs":{},"し":{"docs":{},"、":{"docs":{},"設":{"docs":{},"定":{"docs":{},"な":{"docs":{},"し":{"docs":{},"で":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"ム":{"docs":{},"ト":{"docs":{},"ラ":{"docs":{},"ベ":{"docs":{},"ル":{"docs":{},"デ":{"docs":{},"バ":{"docs":{},"ッ":{"docs":{},"グ":{"docs":{},"や":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"や":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"高":{"docs":{},"度":{"docs":{},"な":{"docs":{},"機":{"docs":{},"能":{"docs":{},"を":{"docs":{},"提":{"docs":{},"供":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"単":{"docs":{},"純":{"docs":{},"な":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}},"一":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}},"は":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"性":{"docs":{},"と":{"docs":{},"競":{"docs":{},"合":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"以":{"docs":{},"降":{"docs":{},"の":{"docs":{},"章":{"docs":{},"で":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"と":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"(":{"docs":{},"変":{"docs":{},"更":{"docs":{},")":{"docs":{},"を":{"docs":{},"サ":{"docs":{},"ブ":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"分":{"docs":{},"割":{"docs":{},"す":{"docs":{},"る":{"docs":{},"方":{"docs":{},"法":{"docs":{},"に":{"docs":{},"つ":{"docs":{},"い":{"docs":{},"て":{"docs":{},"説":{"docs":{},"明":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"使":{"docs":{},"う":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"は":{"docs":{},"、":{"docs":{},"一":{"docs":{},"つ":{"docs":{},"の":{"docs":{},"大":{"docs":{},"き":{"docs":{},"な":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"内":{"docs":{},"包":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"な":{"docs":{},"が":{"docs":{},"ら":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"大":{"docs":{},"き":{"docs":{},"く":{"docs":{},"な":{"docs":{},"る":{"docs":{},"に":{"docs":{},"つ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"膨":{"docs":{},"れ":{"docs":{},"上":{"docs":{},"が":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"異":{"docs":{},"な":{"docs":{},"る":{"docs":{},"ビ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"、":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"更":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"ビ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"が":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"状":{"docs":{},"態":{"docs":{},"に":{"docs":{},"依":{"docs":{},"存":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"intro.html":{"ref":"intro.html","tf":0.01020408163265306}}}}}}}}}}}}}}}}}}}}}}}}}},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"な":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}},"メ":{"docs":{},"ソ":{"docs":{},"ッ":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"更":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.010869565217391304}}}}}}}}}}}}}}}}}}},"私":{"docs":{},"た":{"docs":{},"ち":{"docs":{},"は":{"docs":{},"、":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"ド":{"docs":{},"キ":{"docs":{},"ュ":{"docs":{},"メ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"例":{"docs":{},"に":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.015873015873015872}}}}}}}}}}}}}}}}}},"が":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}},"す":{"docs":{},"る":{"docs":{},"機":{"docs":{},"構":{"docs":{},"を":{"docs":{},"提":{"docs":{},"供":{"docs":{},"し":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}},"と":{"docs":{},"次":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"べ":{"docs":{},"て":{"docs":{},"の":{"docs":{},"ト":{"docs":{},"リ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"を":{"docs":{},"解":{"docs":{},"決":{"docs":{},"す":{"docs":{},"る":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"を":{"docs":{},"返":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"プ":{"docs":{},"レ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"演":{"docs":{},"算":{"docs":{},"子":{"docs":{},"で":{"docs":{},"、":{"docs":{},"外":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"混":{"docs":{},"ぜ":{"docs":{},"る":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ド":{"docs":{},"演":{"docs":{},"算":{"docs":{},"子":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}},"タ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"全":{"docs":{},"体":{"docs":{},"が":{"docs":{},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"に":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"た":{"docs":{},"が":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"の":{"docs":{},"例":{"docs":{},"は":{"docs":{},"上":{"docs":{},"記":{"docs":{},"と":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.007142857142857143}}}}}}}}}}},"か":{"docs":{},"ら":{"docs":{},"取":{"docs":{},"り":{"docs":{},"出":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}},"返":{"docs":{},"す":{"docs":{},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{},"返":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"使":{"docs":{},"用":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"特":{"docs":{},"に":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"再":{"docs":{},"利":{"docs":{},"用":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"再":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"に":{"docs":{},"便":{"docs":{},"利":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"の":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"も":{"docs":{},"公":{"docs":{},"開":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"指":{"docs":{},"定":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"は":{"docs":{},"、":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"子":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"注":{"docs":{},"入":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"指":{"docs":{},"定":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"渡":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"子":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"注":{"docs":{},"入":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"受":{"docs":{},"け":{"docs":{},"入":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}},"付":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}},"作":{"docs":{},"成":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.012658227848101266}}}}}}}}}}},"は":{"docs":{},"、":{"docs":{},"ど":{"docs":{},"ち":{"docs":{},"ら":{"docs":{},"か":{"docs":{},"い":{"docs":{},"う":{"docs":{},"と":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}},"が":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051},"getters.html":{"ref":"getters.html","tf":0.005813953488372093}},"を":{"docs":{},"使":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"（":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"っ":{"docs":{},"て":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"付":{"docs":{},"き":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"、":{"docs":{},"少":{"docs":{},"し":{"docs":{},"冗":{"docs":{},"長":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"（":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"の":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"に":{"docs":{},"マ":{"docs":{},"ッ":{"docs":{},"ピ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"さ":{"docs":{},"せ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"マ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{},"の":{"docs":{},"名":{"docs":{},"前":{"docs":{},"が":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"サ":{"docs":{},"ブ":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"の":{"docs":{},"名":{"docs":{},"前":{"docs":{},"と":{"docs":{},"同":{"docs":{},"じ":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"文":{"docs":{},"字":{"docs":{},"列":{"docs":{},"配":{"docs":{},"列":{"docs":{},"を":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"に":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"/":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"の":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"、":{"docs":{},"読":{"docs":{},"み":{"docs":{},"取":{"docs":{},"り":{"docs":{},"専":{"docs":{},"用":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}},"算":{"docs":{},"出":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"パ":{"docs":{},"テ":{"docs":{},"ィ":{"docs":{"state.html":{"ref":"state.html","tf":0.005050505050505051}}}}}}}}},"ど":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"内":{"docs":{},"部":{"docs":{},"で":{"docs":{},"も":{"docs":{},"簡":{"docs":{},"単":{"docs":{},"に":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"関":{"docs":{},"数":{"docs":{},"を":{"docs":{},"返":{"docs":{},"り":{"docs":{},"値":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"引":{"docs":{},"数":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"す":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"特":{"docs":{},"に":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"中":{"docs":{},"の":{"docs":{},"配":{"docs":{},"列":{"docs":{},"を":{"docs":{},"検":{"docs":{},"索":{"docs":{},"す":{"docs":{},"る":{"docs":{},"時":{"docs":{},"に":{"docs":{},"役":{"docs":{},"立":{"docs":{},"ち":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"：":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005813953488372093}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"が":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"公":{"docs":{},"開":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}},"は":{"docs":{},"、":{"docs":{},"追":{"docs":{},"加":{"docs":{},"で":{"docs":{},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},")":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}},"い":{"docs":{},"く":{"docs":{},"つ":{"docs":{},"か":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}},"あ":{"docs":{},"ら":{"docs":{},"か":{"docs":{},"じ":{"docs":{},"め":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"必":{"docs":{},"要":{"docs":{},"な":{"docs":{},"フ":{"docs":{},"ィ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"の":{"docs":{},"初":{"docs":{},"期":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"初":{"docs":{},"期":{"docs":{},"化":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"望":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"い":{"docs":{},"で":{"docs":{},"す":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ひ":{"docs":{},"と":{"docs":{},"つ":{"docs":{},"の":{"docs":{},"重":{"docs":{},"要":{"docs":{},"な":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"覚":{"docs":{},"え":{"docs":{},"て":{"docs":{},"お":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{},"同":{"docs":{},"期":{"docs":{},"的":{"docs":{},"で":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"な":{"docs":{},"ら":{"docs":{},"な":{"docs":{},"い":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"な":{"docs":{},"ぜ":{"docs":{},"か":{"docs":{},"？":{"docs":{},"次":{"docs":{},"の":{"docs":{},"例":{"docs":{},"で":{"docs":{},"考":{"docs":{},"え":{"docs":{},"て":{"docs":{},"み":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ほ":{"docs":{},"と":{"docs":{},"ん":{"docs":{},"ど":{"docs":{},"の":{"docs":{},"場":{"docs":{},"合":{"docs":{},"、":{"docs":{},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"は":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"に":{"docs":{},"す":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"う":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"フ":{"docs":{},"ィ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"含":{"docs":{},"め":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"、":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"記":{"docs":{},"述":{"docs":{},"的":{"docs":{},"に":{"docs":{},"記":{"docs":{},"録":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"な":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"サ":{"docs":{},"イ":{"docs":{},"レ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}},"ー":{"docs":{},"バ":{"docs":{},"サ":{"docs":{},"イ":{"docs":{},"ド":{"docs":{},"レ":{"docs":{},"ン":{"docs":{},"ダ":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"保":{"docs":{},"持":{"docs":{},"す":{"docs":{},"る":{"docs":{},"な":{"docs":{},"ど":{"docs":{},"、":{"docs":{},"新":{"docs":{},"し":{"docs":{},"い":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"す":{"docs":{},"る":{"docs":{},"と":{"docs":{},"き":{"docs":{},"に":{"docs":{},"、":{"docs":{},"以":{"docs":{},"前":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"保":{"docs":{},"持":{"docs":{},"し":{"docs":{},"た":{"docs":{},"い":{"docs":{},"場":{"docs":{},"合":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ブ":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"含":{"docs":{},"む":{"docs":{},"次":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"形":{"docs":{},"式":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"に":{"docs":{},"マ":{"docs":{},"ー":{"docs":{},"ジ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"デ":{"docs":{},"フ":{"docs":{},"ォ":{"docs":{},"ル":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"は":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"（":{"docs":{},"開":{"docs":{},"発":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"等":{"docs":{},"）":{"docs":{},"に":{"docs":{},"送":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"し":{"docs":{},"か":{"docs":{},"し":{"docs":{},"場":{"docs":{},"合":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"は":{"docs":{},"、":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"変":{"docs":{},"化":{"docs":{},"を":{"docs":{},"記":{"docs":{},"録":{"docs":{},"し":{"docs":{},"て":{"docs":{},"欲":{"docs":{},"し":{"docs":{},"く":{"docs":{},"な":{"docs":{},"い":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"も":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"い":{"docs":{},"は":{"docs":{},"、":{"docs":{},"短":{"docs":{},"い":{"docs":{},"間":{"docs":{},"隔":{"docs":{},"や":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"で":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"へ":{"docs":{},"の":{"docs":{},"複":{"docs":{},"数":{"docs":{},"の":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"も":{"docs":{},"、":{"docs":{},"常":{"docs":{},"に":{"docs":{},"追":{"docs":{},"跡":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"は":{"docs":{},"な":{"docs":{},"い":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"う":{"docs":{},"し":{"docs":{},"た":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"で":{"docs":{},"は":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"内":{"docs":{},"部":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"の":{"docs":{},"元":{"docs":{},"で":{"docs":{},"登":{"docs":{},"録":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"は":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"と":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"も":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"用":{"docs":{},"に":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ラ":{"docs":{},"イ":{"docs":{},"ズ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"す":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ク":{"docs":{},"リ":{"docs":{},"プ":{"docs":{},"タ":{"docs":{},"と":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"後":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"受":{"docs":{},"け":{"docs":{},"取":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ー":{"docs":{},"タ":{"docs":{},"ソ":{"docs":{},"ー":{"docs":{},"ス":{"docs":{},"と":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"ア":{"docs":{},"を":{"docs":{},"例":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}},"全":{"docs":{},"く":{"docs":{},"新":{"docs":{},"し":{"docs":{},"い":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"既":{"docs":{},"存":{"docs":{},"の":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"置":{"docs":{},"き":{"docs":{},"換":{"docs":{},"え":{"docs":{},"る":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"て":{"docs":{},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}},"各":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"と":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"を":{"docs":{},"持":{"docs":{},"ち":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"関":{"docs":{},"数":{"docs":{},"は":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ル":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"に":{"docs":{},"似":{"docs":{},"た":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"数":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"か":{"docs":{},"ど":{"docs":{},"う":{"docs":{},"か":{"docs":{},"は":{"docs":{},"好":{"docs":{},"み":{"docs":{},"の":{"docs":{},"問":{"docs":{},"題":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"多":{"docs":{},"く":{"docs":{},"の":{"docs":{},"開":{"docs":{},"発":{"docs":{},"者":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"る":{"docs":{},"大":{"docs":{},"規":{"docs":{},"模":{"docs":{},"な":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"役":{"docs":{},"に":{"docs":{},"立":{"docs":{},"ち":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"が":{"docs":{},"、":{"docs":{},"完":{"docs":{},"全":{"docs":{},"に":{"docs":{},"オ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"な":{"docs":{},"の":{"docs":{},"で":{"docs":{},"、":{"docs":{},"も":{"docs":{},"し":{"docs":{},"お":{"docs":{},"気":{"docs":{},"に":{"docs":{},"召":{"docs":{},"さ":{"docs":{},"な":{"docs":{},"け":{"docs":{},"れ":{"docs":{},"ば":{"docs":{},"使":{"docs":{},"用":{"docs":{},"し":{"docs":{},"な":{"docs":{},"く":{"docs":{},"て":{"docs":{},"も":{"docs":{},"構":{"docs":{},"い":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"関":{"docs":{},"数":{"docs":{},"名":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"使":{"docs":{},"用":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}},"実":{"docs":{},"装":{"docs":{},"に":{"docs":{},"お":{"docs":{},"い":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"・":{"docs":{},"タ":{"docs":{},"イ":{"docs":{},"プ":{"docs":{},"に":{"docs":{},"定":{"docs":{},"数":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"共":{"docs":{},"通":{"docs":{},"し":{"docs":{},"て":{"docs":{},"見":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"パ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"ン":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"れ":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"に":{"docs":{},"対":{"docs":{},"し":{"docs":{},"て":{"docs":{},"リ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"な":{"docs":{},"ツ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"利":{"docs":{},"用":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"と":{"docs":{},"い":{"docs":{},"う":{"docs":{},"利":{"docs":{},"点":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"、":{"docs":{},"ま":{"docs":{},"た":{"docs":{},"単":{"docs":{},"一":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"全":{"docs":{},"て":{"docs":{},"の":{"docs":{},"定":{"docs":{},"数":{"docs":{},"を":{"docs":{},"設":{"docs":{},"定":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"よ":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"共":{"docs":{},"同":{"docs":{},"で":{"docs":{},"作":{"docs":{},"業":{"docs":{},"す":{"docs":{},"る":{"docs":{},"人":{"docs":{},"に":{"docs":{},"、":{"docs":{},"ア":{"docs":{},"プ":{"docs":{},"リ":{"docs":{},"ケ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"全":{"docs":{},"体":{"docs":{},"で":{"docs":{},"何":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"可":{"docs":{},"能":{"docs":{},"で":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"か":{"docs":{},"を":{"docs":{},"一":{"docs":{},"目":{"docs":{},"見":{"docs":{},"た":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"で":{"docs":{},"理":{"docs":{},"解":{"docs":{},"で":{"docs":{},"き":{"docs":{},"る":{"docs":{},"よ":{"docs":{},"う":{"docs":{},"に":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"際":{"docs":{},"に":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}},"は":{"docs":{},"コ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"少":{"docs":{},"し":{"docs":{},"シ":{"docs":{},"ン":{"docs":{},"プ":{"docs":{},"ル":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"追":{"docs":{},"加":{"docs":{},"の":{"docs":{},"引":{"docs":{},"数":{"docs":{},"を":{"docs":{},"渡":{"docs":{},"し":{"docs":{},"て":{"docs":{},"コ":{"docs":{},"ミ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0035714285714285713}}}}}}}}}}}}}}}}},"や":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417},"api.html":{"ref":"api.html","tf":0.0031645569620253164}}},"よ":{"docs":{},"り":{"docs":{},"実":{"docs":{},"践":{"docs":{},"的":{"docs":{},"な":{"docs":{},"例":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"、":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ピ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"カ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"チ":{"docs":{},"ェ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ア":{"docs":{},"ウ":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"挙":{"docs":{},"げ":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"こ":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"非":{"docs":{},"同":{"docs":{},"期":{"docs":{},"な":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"チ":{"docs":{},"ェ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"ア":{"docs":{},"ウ":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"リ":{"docs":{},"ク":{"docs":{},"エ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"送":{"docs":{},"信":{"docs":{},"し":{"docs":{},"、":{"docs":{},"楽":{"docs":{},"観":{"docs":{},"的":{"docs":{},"に":{"docs":{},"カ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"内":{"docs":{},"を":{"docs":{},"ク":{"docs":{},"リ":{"docs":{},"ア":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ペ":{"docs":{},"イ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"使":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ス":{"docs":{},"パ":{"docs":{},"ッ":{"docs":{},"チ":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}},"現":{"docs":{},"在":{"docs":{},"の":{"docs":{},"カ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"内":{"docs":{},"の":{"docs":{},"商":{"docs":{},"品":{"docs":{},"を":{"docs":{},"保":{"docs":{},"存":{"docs":{},"す":{"docs":{},"る":{"docs":{"actions.html":{"ref":"actions.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}},"ト":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"ボ":{"docs":{},"ト":{"docs":{},"ム":{"docs":{},"ま":{"docs":{},"で":{"docs":{},"フ":{"docs":{},"ラ":{"docs":{},"ク":{"docs":{},"タ":{"docs":{},"ル":{"docs":{},"構":{"docs":{},"造":{"docs":{},"で":{"docs":{},"す":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}},"ネ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}},"動":{"docs":{},"的":{"docs":{},"な":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"登":{"docs":{},"録":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"で":{"docs":{},"、":{"docs":{},"他":{"docs":{},"の":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}},"解":{"docs":{},"除":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}},"に":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"を":{"docs":{},"登":{"docs":{},"録":{"docs":{},"す":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}},"に":{"docs":{},"よ":{"docs":{},"る":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}},"の":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"と":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"カ":{"docs":{},"ラ":{"docs":{},"イ":{"docs":{},"ズ":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}},"を":{"docs":{},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"型":{"docs":{},"に":{"docs":{},"追":{"docs":{},"加":{"docs":{},"す":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}},"付":{"docs":{},"き":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"で":{"docs":{},"の":{"docs":{},"グ":{"docs":{},"ロ":{"docs":{},"ー":{"docs":{},"バ":{"docs":{},"ル":{"docs":{},"ア":{"docs":{},"セ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"へ":{"docs":{},"の":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"セ":{"docs":{},"ス":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}},"け":{"docs":{},"ら":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"コ":{"docs":{},"ン":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ネ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"返":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"は":{"docs":{},"指":{"docs":{},"定":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"に":{"docs":{},"バ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"付":{"docs":{},"き":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"で":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"エ":{"docs":{},"ク":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"時":{"docs":{},"ど":{"docs":{},"き":{"docs":{},"、":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"の":{"docs":{},"複":{"docs":{},"数":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"タ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"作":{"docs":{},"成":{"docs":{},"す":{"docs":{},"る":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"か":{"docs":{},"も":{"docs":{},"し":{"docs":{},"れ":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"。":{"docs":{},"例":{"docs":{},"え":{"docs":{},"ば":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"々":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"\"":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"\"":{"docs":{},"を":{"docs":{},"撮":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"、":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"前":{"docs":{},"後":{"docs":{},"の":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"比":{"docs":{},"較":{"docs":{},"し":{"docs":{},"た":{"docs":{},"く":{"docs":{},"な":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"る":{"docs":{},"で":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"そ":{"docs":{},"れ":{"docs":{},"を":{"docs":{},"実":{"docs":{},"現":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"オ":{"docs":{},"ブ":{"docs":{},"ジ":{"docs":{},"ェ":{"docs":{},"ク":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"デ":{"docs":{},"ィ":{"docs":{},"ー":{"docs":{},"プ":{"docs":{},"コ":{"docs":{},"ピ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"行":{"docs":{},"う":{"docs":{},"必":{"docs":{},"要":{"docs":{},"が":{"docs":{},"あ":{"docs":{},"り":{"docs":{},"ま":{"docs":{},"す":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"親":{"docs":{},"モ":{"docs":{},"ジ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"ル":{"docs":{},"か":{"docs":{},"ら":{"docs":{},"名":{"docs":{},"前":{"docs":{},"空":{"docs":{},"間":{"docs":{},"を":{"docs":{},"継":{"docs":{},"承":{"docs":{},"す":{"docs":{},"る":{"docs":{"modules.html":{"ref":"modules.html","tf":0.001694915254237288}}}}}}}}}}}}}}}}}}},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"し":{"docs":{},"を":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"化":{"docs":{},"す":{"docs":{},"る":{"docs":{"structure.html":{"ref":"structure.html","tf":0.01694915254237288}}}}}}},"サ":{"docs":{},"ー":{"docs":{},"ビ":{"docs":{},"ス":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"抽":{"docs":{},"象":{"docs":{},"化":{"docs":{},"し":{"docs":{},"、":{"docs":{},"そ":{"docs":{},"し":{"docs":{},"て":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"の":{"docs":{},"内":{"docs":{},"部":{"docs":{},"で":{"docs":{},"は":{"docs":{},"そ":{"docs":{},"の":{"docs":{},"サ":{"docs":{},"ー":{"docs":{},"ビ":{"docs":{},"ス":{"docs":{},"を":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"に":{"docs":{},"す":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"簡":{"docs":{},"単":{"docs":{},"に":{"docs":{},"依":{"docs":{},"存":{"docs":{},"関":{"docs":{},"係":{"docs":{},"を":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{},"化":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"、":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"べ":{"docs":{},"き":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"残":{"docs":{},"っ":{"docs":{},"て":{"docs":{},"い":{"docs":{},"な":{"docs":{},"い":{"docs":{},"か":{"docs":{},"確":{"docs":{},"認":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}},"タ":{"docs":{},"グ":{"docs":{},"で":{"docs":{},"直":{"docs":{},"接":{"docs":{},"読":{"docs":{},"み":{"docs":{},"込":{"docs":{},"む":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"が":{"docs":{},"で":{"docs":{},"き":{"docs":{},"、":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ロ":{"docs":{},"ガ":{"docs":{},"ー":{"docs":{},"フ":{"docs":{},"ァ":{"docs":{},"イ":{"docs":{},"ル":{"docs":{},"は":{"docs":{},"、":{"docs":{},"他":{"docs":{},"に":{"docs":{},"も":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}},"プ":{"docs":{},"ラ":{"docs":{},"グ":{"docs":{},"イ":{"docs":{},"ン":{"docs":{},"は":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"の":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"撮":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"に":{"docs":{},"注":{"docs":{},"意":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"し":{"docs":{},"ょ":{"docs":{},"う":{"docs":{},"。":{"docs":{},"ス":{"docs":{},"ナ":{"docs":{},"ッ":{"docs":{},"プ":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ッ":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"撮":{"docs":{},"る":{"docs":{},"こ":{"docs":{},"と":{"docs":{},"は":{"docs":{},"コ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"が":{"docs":{},"か":{"docs":{},"か":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"、":{"docs":{},"開":{"docs":{},"発":{"docs":{},"中":{"docs":{},"だ":{"docs":{},"け":{"docs":{},"利":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"ギ":{"docs":{},"ン":{"docs":{},"グ":{"docs":{},"の":{"docs":{},"前":{"docs":{},"に":{"docs":{},"、":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"変":{"docs":{},"換":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}},"グ":{"docs":{},"出":{"docs":{},"力":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"自":{"docs":{},"動":{"docs":{},"で":{"docs":{},"展":{"docs":{},"開":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}}}}}},"ー":{"docs":{},"カ":{"docs":{},"ル":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"よ":{"docs":{},"り":{"docs":{},"も":{"docs":{},"か":{"docs":{},"な":{"docs":{},"り":{"docs":{},"冗":{"docs":{},"長":{"docs":{},"で":{"docs":{},"、":{"docs":{},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}}}}}}}}},"次":{"docs":{},"の":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"の":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"状":{"docs":{},"態":{"docs":{},"を":{"docs":{},"保":{"docs":{},"存":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.004048582995951417}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"番":{"docs":{},"環":{"docs":{},"境":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}},"で":{"docs":{},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"を":{"docs":{},"有":{"docs":{},"効":{"docs":{},"に":{"docs":{},"し":{"docs":{},"て":{"docs":{},"デ":{"docs":{},"プ":{"docs":{},"ロ":{"docs":{},"イ":{"docs":{},"し":{"docs":{},"て":{"docs":{},"は":{"docs":{},"い":{"docs":{},"け":{"docs":{},"ま":{"docs":{},"せ":{"docs":{},"ん":{"docs":{},"！":{"docs":{},"厳":{"docs":{},"格":{"docs":{},"モ":{"docs":{},"ー":{"docs":{},"ド":{"docs":{},"で":{"docs":{},"は":{"docs":{},"不":{"docs":{},"適":{"docs":{},"切":{"docs":{},"な":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"検":{"docs":{},"出":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"ス":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"ト":{"docs":{},"ツ":{"docs":{},"リ":{"docs":{},"ー":{"docs":{},"に":{"docs":{},"対":{"docs":{},"し":{"docs":{},"て":{"docs":{},"深":{"docs":{},"い":{"docs":{},"監":{"docs":{},"視":{"docs":{},"を":{"docs":{},"実":{"docs":{},"行":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"パ":{"docs":{},"フ":{"docs":{},"ォ":{"docs":{},"ー":{"docs":{},"マ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"コ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"を":{"docs":{},"回":{"docs":{},"避":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"に":{"docs":{},"本":{"docs":{},"番":{"docs":{},"環":{"docs":{},"境":{"docs":{},"で":{"docs":{},"は":{"docs":{},"無":{"docs":{},"効":{"docs":{},"に":{"docs":{},"し":{"docs":{},"て":{"docs":{},"く":{"docs":{},"だ":{"docs":{},"さ":{"docs":{},"い":{"docs":{},"。":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02631578947368421}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"確":{"docs":{},"か":{"docs":{},"に":{"docs":{},"、":{"docs":{},"上":{"docs":{},"記":{"docs":{},"の":{"docs":{},"例":{"docs":{},"は":{"docs":{},"単":{"docs":{},"純":{"docs":{},"な":{"docs":{"forms.html":{"ref":"forms.html","tf":0.011363636363636364}}}}}}}}}}}}}},"ド":{"docs":{},"キ":{"docs":{},"ュ":{"docs":{},"メ":{"docs":{},"ン":{"docs":{},"ト":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}},"ブ":{"docs":{},"ラ":{"docs":{},"ウ":{"docs":{},"ザ":{"docs":{},"で":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}},"の":{"docs":{},"実":{"docs":{},"行":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}},"レ":{"docs":{},"ス":{"docs":{},"ポ":{"docs":{},"ン":{"docs":{},"ス":{"docs":{},"の":{"docs":{},"モ":{"docs":{},"ッ":{"docs":{},"ク":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}}}}}}}}},"期":{"docs":{},"待":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"る":{"docs":{},"ミ":{"docs":{},"ュ":{"docs":{},"ー":{"docs":{},"テ":{"docs":{},"ー":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"を":{"docs":{},"ア":{"docs":{},"ク":{"docs":{},"シ":{"docs":{},"ョ":{"docs":{},"ン":{"docs":{},"が":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"す":{"docs":{},"か":{"docs":{},"を":{"docs":{},"テ":{"docs":{},"ス":{"docs":{},"ト":{"docs":{},"す":{"docs":{},"る":{"docs":{},"た":{"docs":{},"め":{"docs":{},"の":{"docs":{},"ヘ":{"docs":{},"ル":{"docs":{},"パ":{"docs":{},"ー":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"構":{"docs":{},"文":{"docs":{},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"結":{"docs":{},"果":{"docs":{},"を":{"docs":{},"検":{"docs":{},"証":{"docs":{},"す":{"docs":{},"る":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0041841004184100415}}}}}}}}},"設":{"docs":{},"定":{"docs":{},"か":{"docs":{},"ら":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}},"を":{"docs":{},"使":{"docs":{},"用":{"docs":{},"し":{"docs":{},"て":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0020920502092050207}}}}}}}}},"型":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0189873417721519}}}},"登":{"docs":{},"録":{"docs":{},"さ":{"docs":{},"れ":{"docs":{},"た":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"は":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}},"て":{"docs":{},"い":{"docs":{},"る":{"docs":{},"ゲ":{"docs":{},"ッ":{"docs":{},"タ":{"docs":{},"ー":{"docs":{},"を":{"docs":{},"公":{"docs":{},"開":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{},"読":{"docs":{},"み":{"docs":{},"取":{"docs":{},"り":{"docs":{},"専":{"docs":{},"用":{"docs":{},"で":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"監":{"docs":{},"視":{"docs":{},"を":{"docs":{},"止":{"docs":{},"め":{"docs":{},"る":{"docs":{},"場":{"docs":{},"合":{"docs":{},"は":{"docs":{},"、":{"docs":{},"ハ":{"docs":{},"ン":{"docs":{},"ド":{"docs":{},"ラ":{"docs":{},"関":{"docs":{},"数":{"docs":{},"の":{"docs":{},"返":{"docs":{},"り":{"docs":{},"値":{"docs":{},"を":{"docs":{},"関":{"docs":{},"数":{"docs":{},"と":{"docs":{},"し":{"docs":{},"て":{"docs":{},"呼":{"docs":{},"び":{"docs":{},"出":{"docs":{},"し":{"docs":{},"ま":{"docs":{},"す":{"docs":{},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0031645569620253164}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"詳":{"docs":{},"細":{"docs":{"api.html":{"ref":"api.html","tf":0.0189873417721519}}}}},"length":14156},"corpusTokens":["!","!==","\"ablacklistedmutation\"","\"after\"","\"before\"","\"getters\"","\"increment\"","\"increment\",","\"inject\"","\"one","\"retrieve\"","\"singl","\"snapshots\"","\"state","\"store\"","\"store\",","\"view\",","\"vuex","\"when","\"вычисляемые","\"до\"","\"единственным","\"из","\"инъекции\"","\"источник","\"когда","\"машину","\"машины","\"нагрузка\"","\"однонаправленного","\"оптимистично\"","\"паттерн","\"после\"","\"представление\",","\"снять","\"хранилище\"","\"ゲッター\"","\"タイプが","\"ビュー\"","\"注入\"","\"状態管理パターン\"とはなんですか？","#","$store):","%","'#app',","''","'...',","'../api/shop'","'../api/shop':","'./getters'","'./modules/a'","'./modules/a'],","'./mutat","'./mutations'","'./store'","'./test.js',","'anothergetter',","'apple',","'babel","'bar'","'carrot',","'chai'","'count'","'count',","'donetodoscount'","'donetodoscount',","'foo',","'foo/somegetter'","'foo/somemutation'","'foo/someotheraction'","'foo/someothergetter'","'fruit'","'increment'","'increment',","'incrementasync',","'incrementby'","'mocha","'mymodule'],","'newprop',","'once'","'once')","'once');","'orange',","'pluginaction')","'production'","'receive_products',","'request_products'","'s","'some/nested/module/bar'","'some/nested/module/foo',","'some_mutation'","'somegetter'","'somemutation'","'someotheraction'","'someothergetter'","'test","'update_data')","'vegetable'","'vue'","'vuex'","'vuex/dist/logger'","((state.count","()","().","(2.3.0","(action,","(activé","(ainsi","(c'est","(cb)","(commit)","(comput","(context)","(count","(ctx,","(de","(declar","(déclaré","(e)","(e.g.","(ecmascript","(enabl","(error)","(especi","(expectedmutations.length","(for","(handler)。这个回调函数就是我们实际进行状态更改的地方，并且它会接受","(id)","(module.hot)","(mutat","(mutation)","(mutation,","(mutation.typ","(nécessit","(option","(par","(particulièr","(payload)","(payload),","(payload):","(payloads):","(pour","(prefix)","(props)","(qui","(requir","(root)","(sera","(singl","(socket)","(ssot)”而存在。这也意味着，每个应用将仅仅包含一个","(stage","(state","(state)","(state)。vuex","(state,","(store)","(strict","(support","(supporté","(thi","(togeth","(tout","(type)","(type,","(value)","(vou","(which","(will","(you","({","(«","(в","(для","(или","(например,","(находящегося","(нужно","(определённые","(особенно","(поддержка","(предварительно","(при","(пример","(требуется","(хотя","(これは、","(これは不自然な例です。実際には、さらに複雑なタスクのために","(例如当",")","*","*/","+","+=",",","...","...args)","...mapactions('some/nested/module',","...mapactions([","...mapactions({","...mapgetters([","...mapgetters({","...mapmutations([","...mapmutations({","...mapstate('some/nested/module',","...mapstate({","...option","...state.obj,",".babelrc",".babelrc):",".babelrc）:",".default","/","/*","//","///","/\\.js$/,","/node_modules/","0","0)","1","1)","1,","10","10)","100)","1000)","123","123)","123),","1st","2","2),","2,","2.3.0+","2.3.0+)","2.3.0+):","2.5.0","2.5.0+","2nd","2つあります。","2つのメソッドを両方呼び出すとき、それらがいつ呼び出されたか、どちらが先に呼び出されたかを、どうやって知ればよいのでしょう？これがまさに、状態変更と非同期の","2つの概念を分離したいという理由です。vuex","3","3,","3.0","3rd","3ᵉ","4","4th","4ᵉ","6","6)",":",";","=","===","=>",">",">=","?","[","[...state.cart.added]","[]","[],","[createlogger()]","[key:","[myplugin]","[mypluginwithsnapshot]","[plugin]","[some_mutation]","[type:","[{","]","])","]),","],","_.clonedeep(state)","_.clonedeep(store.state)","__dirname,","`","`,","`.default`","`actiona`","`computed`","`console`","`console`,","`getdata()`","`getotherdata()`","`getters`","`mapactions`","`mapmutations`","`modulea`","`modulea`'","`moduleb`","`moduleb`'","`mutation`","`mutations`","`mymodule`","`namespace`","`namespaced`","`nested/mymodule`","`nextstate`","`nextstate`...","`prevstate`","`require`","`root`","`rootgetters`","`some/nested/module`","`state","`state`","`store.commit`","`store.dispatch`","`store.getters.donetodoscount`","`store.getters`","`store.getters`,","`store.getters`，只存在于模块中","`store.state.count`","`store.state`","`store.state`,","`store.state`，只存在于模块中","`store.state`，若在模块中则为局部状态","`store`.","`this.$store.commit('increment')`","`this.$store.commit('incrementby',","`this.$store.dispatch('increment')`","`this.$store.dispatch('incrementby',","`this.add()`","`this.count`","`this.donecount`","`this.increment()`","`this.incrementby(amount)`","`this`","`this`,","`true`","`true`,","`vue.use(vuex)`","`vuex.mapstate`","`{","`{{","a:","abonnez","abord","about.","abov","abramov","abramov,","abstract","abstrair","accept","access","accesseur","accesseur,","accesseur.","accesseurs,","accesseurs.","accesseurs...","account:","accéder","achiev","actant","actant.","actent","acter","acter,","action","action({","action.","action:","actiona","actionb","actions'","actions,","actions.","actions.j","actions.spec.j","actions:","actions?,","actionsinjector","actionsinjector({","actions，响应在","action、mut","action。","action。handl","action。opt","action。处理函数总是接受","action。详细介绍","action。返回一个解析所有被触发的","action，以处理更加复杂的异步流程？","action，局部状态通过","action，或者使用","action：","activ","acton","actual","actuel","acté","actée,","ad","adapt","add","add:","addit","addition,","additionnel","admetton","admittedly,","advanc","advantag","affect","affecté","affichon","afin","again,","aid","aider","ainsi","ait","ajout","ajoutez","allon","allow","alor","alors,","alreadi","also,","altern","alternative,","alternatively,","although","alway","amount","amount)`","amount:","anoth","any,","aperçu","api","api,","api.","api.callasyncmethod(()","apis.","api。当测试","api，vuex","api，因此你可以直接用","app","app,","app.","app.vu","app:","app;","apparti","appel","appelez","appelé","appelée.","appli","applic","applicatif","application'","application,","application.","application:","applications.","appliqu","appliqué","apport","apprendr","approach","approch","appréhend","aprè","arbitrari","arbr","architecture.","architecture。与其他模式不同的是，vuex","architectureから影響を受けています。","args,","argument","argument,","argument.","argument:","arguments.","arguments:","array","array)","array,","arriv","arrow","arrêter","articl","artificiel,","assembl","assert","asset","assets）","assets）时不需要在同一模块内额外添加空间名前缀。更改","assez","assign","associ","associé","assum","assur","assurez","astuc","async","asynchron","asynchrones,","asynchrones.","asynchronous,","at.","attach","attaché","attempt","attendr","attendu","attent","au","aucun","auparavant.","aura","aurez","auron","aussi","author","auto","automat","automatically.","automatically:","automatiqu","autorisé","autosuffis","autosuffisant","autr","aux","avail","avancé","avant","avantag","avec","avoid","avoir","avon","await","await,","await，我们可以如下组合","b:","babel","balis","basant","base","basent","basic","basique.","basé","be","beaucoup","becom","befor","behind","belong","besoin","besoin.","better","between","bibliothèqu","bidirectionnel","bien","big","big,","bind","bit","bloated.","boilerpl","boilerplate.","bonn","boolean","bord","both","bound","boutiqu","break","brittl","browser","browserifi","browserify,","browserify，让构建工具帮我们处理：","browsers.","bu","build","build.","built","bundl","bundle.","bundle.j","bundle.js'","bundle。","bénéficier","bénéfiqu","c'est","c.","ca","cach","calcul","calculé","calculée,","calculées,","call","callback","canal","captur","car","caractèr","care","cart","cart,","cart.j","cas,","case","cases,","catch","category:","caus","causera","caveat","cb([","cb:","cd","cdn","ce","ceci","ceci,","cela","cela,","center","central","centralisé","cepend","cependant,","certain","cet","cett","chai","chain","champ","champ.","champs,","chanc","chang","change,","change.","change:","changed.","changement","changent","changer","changes,","changes.","changez","changé.","changée.","chapitre.","chapitres,","chapter","chapters.","chaqu","charg","chaud","chaud.","check","checkout","checkout,","child","chose","ci","citat","clavier","clear","clone","cloner","clé","code","code.","collabor","collaborateur","collapsed:","combin","combiné","come","comm","commenc","commencez","comment","commençon","commit","commit('account/login')","commit('gotdata',","commit('gototherdata',","commit('increment')","commit('receive_products',","commit('request_products')","commit('somemutation')","commit('somemutation',","commit('someothermutation')","commit(mutation:","commit(type:","commit(types.checkout_failure,","commit(types.checkout_request)","commit(types.checkout_success),","commit):","commit,","commit.","committed,","commit。换言之，你在使用模块内容（modul","common","commonli","communé","compar","compil","complet","complex","complexes)","complic","compliqué","compliqués,","complèt","complète,","complément","compon","component,","component.","component:","components,","components.","components:","components?","compos","composant,","composant.","composants,","composé","comprendre.","compromi","compréhens","compt","comptag","compter","compteur,","comput","computation,","computed.","computed:","concept","concepts.","concret","config","config.","configur","configuration.","conflict","conflit","consid","considéron","consist","consol","console,","console.log(action.payload)","console.log(action.type)","console.log(mutation.payload)","console.log(mutation.type)","console.log(store.state.count)","const","constant","constructeur","constructor","consult","consultez","conséquent","contain","contamin","conten","conteneur","contenir","contenu","context","context,","context.","context.commit","context.commit('increment')","context.gett","context.getters.","context.rootst","context.rootstate:","context.rootstate：","context.st","contexte.","contient","contriv","convent","convert","convertir","conçu","copi","core","correspond)","cost","cost.","count","count++","count,","count:","countalias:","counter","countpluslocalst","coup","couplé","courant","court","cout","couvrir","creat","createlogg","createlogger({","createnamespacedhelp","createnamespacedhelpers('some/nested/module')","createnamespacedhelpers(namespace:","createnamespacedhelpers.","createplugin","createvuexlogg","createvuexlogger。","createwebsocketplugin","createwebsocketplugin(socket)","creation)","creation）の際に宣言された、静的なモジュールはこのメソッドで削除できないことに注意してください。","cross","création","créer","créez","créon","créé","current","côté","cœur","d'access","d'accè","d'achats,","d'achats.","d'acter","d'action","d'action.","d'aid","d'api","d'appel","d'applic","d'argument","d'assert","d'attach","d'autr","d'avoir","d'effectu","d'espac","d'i","d'implément","d'import","d'incrément","d'inject","d'instanc","d'observer,","d'option","d'opérat","d'outil","d'un","d'une","d'utilis","d'échec","d'écrire","d'élément","d'état","d'état.","d'évènement","d'être","d.","dan","data","data)","daunting.","de","deal","debug","debuggable,","debugging)","debugging.","decis","declar","deep","deepli","default","default,","default.","default:","defin","defineplugin","dehor","depend","dependencies,","dependencies.","deploy","depui","deriv","dernier","dernièr","derrièr","describe('actions',","describe('getters',","describe('mutations',","descript","descripteur","descriptive:","descriptor","desir","dessou","dessu","dessus,","destructur","destructuring）がよく使われます（特に","detail","details,","detect","deux","deuxièm","dev","develop","developers,","development,","development.","devenir","devez","devient","devraient","devrait","devriez","devron","devtool","devtool'","devtools,","devtools，你可能不需要此插件。","differ","difficil","différenc","différenci","différent","différent,","dire","direct","directement,","directli","directly,","directly?","discuss","dispatch","dispatch('account/login')","dispatch('actiona')","dispatch('actiona').then(()","dispatch('someotheraction')","dispatch('someotheraction',","dispatch(action:","dispatch(typ","dispatch(type:","dispatch,","dispatch/commit","dispatch:","display","dispon","divers","divid","divis","do:","docs.","document","documentation.","documentation。","doesn't","doit","doit,","doivent","dom","dom.","dom。","don't","don't.","donc","done","done()","done(error)","done)","done:","done?","donecount:","donetodos:","donetodoscount","donetodoscount:","donn","donner","donné","données,","doublecount","dout","down","down:","download","drive","du","due","dumb","duplic","dupliqu","durant","dure","dynam","dynamiqu","dynamique.","dynamiquement.","dè","débogable,","débogag","débogage)","débogage.","déboguon","décision","déclar","déclarer","déclencher","déclenchera","déclenché","déclenché,","déclenchée,","déclenchés.","décomposit","défaut","défaut,","défaut.","défini","définir","définiss","définissez","déjà","démarrez","dépendanc","dépendances,","dépendr","déployez","désactivé","désiré","déstructur","détaché","détail","détails,","détecter","développ","développement,","développement.","développeur","développeurs,","d’instantané","e.g.","e.target.value)","each","easili","ecmascript","ecmascript),","effect","effectué","effet","efficac","efficaces.","effici","either:","el:","ell","elm","elm.","en","enabl","encapsul","encapsulé","encor","endroit","enfant","enfants.","enforc","engorgé.","enregistr","enregistron","enregistré","enregistré,","enregistrée,","enregistrés.","ensembl","ensuite,","ensur","entir","entr","entrainera","entri","entry:","envifi","envoy","erreur","erreur.","error","error.","es2015","es2015，你得抓紧了！","espac","especi","essay","essenti","essentiel","est","et","evalu","evaluate,","even","event","event:","events.","events:","ex.","exact","exactli","examin","examineron","exampl","example,","example.","example:","exampleをチェックアウトしてください。","exclude:","exempl","exemple,","expand","expect","expect(count).to.equal(0)","expect(mutation.payload).to.deep.equal(payload)","expect(mutation.type).to.equal(type)","expect(result).to.deep.equal([","expect(state.count).to.equal(1)","expectedmutations,","expectedmutations.length)","expectedmutations[count]","expens","explicit","explicit,","explicite,","explicite.","explicitement.","explicitli","export","export,","export:","exporton","expos","exposera","exposé","extens","extension，提供了诸如零配置的","extern","externes.","extract","extrair","extrem","extrêmement","fabriqu","facil","factori","failur","fair","fait","fals","false,","false。","fashion.","fastidieux","faudrait","faut","façon","featur","feel","feront","ferra","few","fichier","field","fields,","file","file,","filename:","files.","filter","filtercategori","filteredproduct","filtrer","fin","final","final.","finally,","find","fine","finer","fini","finir,","finish","first","first?","fit","flow","flow\":","flows?","flux","flux,","flux.","flux、redux、和","fléchée","foi","fois)","fois,","follow","fonction","fonction,","fonction.","fonctionn","fonctionnalité","font","foo:","forc","form","format","formulair","fourni","fourni.","fournir","fourniss","fournit","fractal","fragil","framework/assert","framework/bibliothèqu","fresh","full","function","function'","function)","function,","function.","functions,","functions.","fur","further","furthermore,","fusionn","gener","genr","gestion","gestionnair","gestionnaire.","get","getallproduct","getdata()","getdata())","getotherdata()","getotherdata())","getproduct","getter","getter'","getter.","getter:","getters)","getters,","getters.","getters...","getters.donetodos.length","getters.filteredproducts(state,","getters.j","getters.somegett","getters.someothergett","getters.spec.j","getters:","getters?,","getters['account/isadmin']","getters['account/posts/popular']","getters['account/profile']","getters、dispatch、commit","getters。当我们在之后介绍到","getter、act","getter。你也可以在","getter，dispatch","getter，gett","getter，rootst","getter，也会通过","getter，只读。","getter，接收的第一个参数是模块的局部状态对象。","getter，根节点状态会作为第三个参数暴露出来：","gettodobyid:","git","github","give","given","glanc","glasses:","global","global,","global.","globalement.","globally.","globaux,","go","good","grand","grandement","grandit,","granulair","granular","greatli","gro","gros,","gross","grow","génère","gérant","gérer","handl","handler","handler,","handler.","handler.\"","handler:","handlers,","handlers.","handler。这个选项更像是事件注册：“当触发一个类型为","handler，你需要以相应的","hard","haut","have","haven't","help","helper","helpers,","helpers.","here","here'","high","hmr","hmr.","hold","hook","hot","hotupdate(newoptions:","hot。","however,","https://github.com/vuejs/vuex.git","https://unpkg.com/vuex","https://unpkg.com/vuex@2.0.0","https://unpkg.com/vuex@2.0.0.","hydrat","hérite","ici","id)","id:","idea","ideal.","identiqu","idiot","idé","idéales.","il","imagin","imaginon","imbriqué","imbriqués,","implement","implementation:","implementations.","impliqu","impliqué","implément","import","import.","important","important,","importantly,","impos","imposs","impossible:","imprévis","in,","inappropri","inappropriées.","inbound","inchangé","inclu","includ","incluez","inconvéni","increment","increment(state)","increment:","incrementasync","incrementifoddonrootsum","index.html","index.j","indirect.","inherit","initi","initialisez","initialisé","inject","injectera","injection):","injecté","inlin","input","input.","insid","inspir","inspiré","instal","installez","installé","instanc","instance,","instantané","instead","integr","intent","inter","internes,","internes.","interrog","intimidant.","intraç","introduc","introduct","intègr","intégré","inversement.","invok","involv","invoqu","is,","isadmin","it'","it('filteredproducts',","it('getallproducts',","it('increment',","it,","it.","it?","item","itself","jamai","jeter","jetez","jouer","jour","jour.","judicieux","jump","just","karma","key","key.","key:","keystrokes:","know","l'abonn","l'accesseur","l'action","l'ajout","l'analys","l'api","l'appel","l'applic","l'application.","l'arbr","l'architectur","l'argument","l'asynchronism","l'auteur","l'avoir","l'enregistr","l'espac","l'exempl","l'export","l'extens","l'extrair","l'idé","l'import","l'inject","l'input","l'instal","l'instanc","l'intérieur","l'invers","l'objet","l'on","l'opportunité","l'option","l'opérat","l'opérateur","l'une","l'utilis","l'utilisateur","l'utilisez","l'échec","l'état","l'état)","l'état,","l'état.","l'évènement","la","laiss","laisser","lanc","lancer","lancera","lancée.","laquel","larg","later","later.","latest","le","lead","learn","leav","lectur","lesquel","less","let'","leur","level","leverag","liaison","librairi","librari","lien","lier","lieu","lign","like):","limit","link","links.","linter","linters,","lion","lisant","list","listen","littéral","liée","loader","loader!./actions')","loader!./test.js'","loader!./test.js'.","loader!./test.js'。","loader!babel","loader',","loader,","loader.","loader:","loaders.","loaders:","loaders。","loader。","local","local,","local.","localcomput","localhost:8080/webpack","localis","localisé","localisés.","locat","locaux","log","logged,","logger","logger:","logging,","logguer.","loggué","logic","login","logiqu","logs.","loin","long","look","lor","lorsqu","lorsqu'il","lorsqu'on","lorsqu'un","lose","lui","lunett","là","là,","légèrement","made","mai","main","main.j","maintainability.","mainten","maintenabilité","maintenant,","make","manag","management,","mani","manipul","manièr","manière,","map","map:","mapact","mapactions(namespace?:","mapactions,","mapgett","mapgetters(namespace?:","mapgetters({","mapgetters,","mapmut","mapmutations(namespace?:","mapmutations,","mapstat","mapstate([","mapstate(namespace?:","mapstate({","mapstate,","mapstate、mapgetters、mapact","mapstate、mapgetters、mapactions、そして","mark","matter","mean","mechan","medium","meilleur","merg","messag","message)","message:","mesur","method","method.","method:","methods.","methods/properti","methods:","mettez","metton","mettr","mettront","mi","mieux","mix","mocha","mock","mocking.","mode","mode)","mode,","mode.","model","modif","modifi","modifications,","modifié","modul","modular","modularité.","module'","module),","module,","module.","module.export","module.hot.accept(['./mutations',","module:","modulea","modulea,","moduleb","modules,","modules.","modules:","modules?","modèl","modèles,","moment.","monopag","more","moyen","moyenn","much","multipl","mutaion","mutat","mutated.","mutateur","mutation,","mutation.","mutation.payload)","mutation.typ","mutation/act","mutation:","mutations)","mutations,","mutations.","mutations.j","mutations.spec.j","mutations:","mutations?,","mutationtransform","mutation、module、act","mutation。","mutation。handl","mutation。opt","mutation。vuex","mutation。详细介绍","mutation。这样使得我们可以方便地跟踪每一个状态的变化，从而让我们能够实现一些工具帮助我们更好地了解我们的应用。","mutation（用于外部地数据持久化、记录或调试）或者提交","mutation，不同在于：","mutation，处理函数总是接受","mutation，将","mutation，并且使用","mutation，或者使用","mutation，或者通过","mutation，插件可以用来同步数据源到","mutation，而不是直接变更状态。","mutation：","muter","muton","muté.","mypage:","myplugin","mypluginwithsnapshot","myreusablemodul","mécanism","méthode","méthode.","même","même,","n","n'activez","n'affect","n'aimez","n'ait","n'aurez","n'avez","n'entr","n'est","n'i","n'import","n)","name","name,","name.","namespac","namespace,","namespace.","namespaced:","namespaced?,","name）機能を使用できます","natur","naturel","navigateur","navigateurs.","ne","need","need.","nest","never","new","newact","newmodulea","newmut","newmutations,","newprop:","next","next,","nextstat","nextstate...","niveau","niveaux","no","node","node.","node.j","node.js.","node_modules/vuex","nom","nom.","nommé","non","normal","normalement,","normally,","note","note:","notez","notr","nou","nouveau","nouveaux","nouvel","now","now,","npm","npm.","null,","nécessair","nécessaires.","nécessit","obj","obj.messag","obj.message。在严格模式中，由于这个修改不是在","object","object)","object):","object,","object.","object:","objet","objet,","objet.","oblig","observ","observables).","obtenir","of:","off","offic","offici","officiel","on","one,","one.","only.","ont","oper","operations,","operations.","operator）を使って","opportun","optimist","option","option.","option:","optionnel","options.","options.namespac","options:","options?:","opérat","opérateur","order","ou","ourselv","out","outbound","outer","outil","output","output:","outsid","où","pa","pallier","panier","par","paraitr","paramètr","parc","parent","parent.","parent/child","parent/enf","parfait","parfoi","part","partag","partagé","partagé,","parti","parti.","particularli","particulièr","parts:","pass","passage).","passer","passez","passé","path","path:","pattern","pattern\"?","patterns,","payload","payload)","payload,","payload.amount","payload:","payload?:","payloads:","penché","pendant","perdant","perfectli","perform","performances.","permet","permut","persist","persistence,","personnelle.","peu","peut","peuvent","pick","piec","pilot","place","plain","play","plu","plugin","plugin.","plugins,","plugins.","plugins:","plupart","plus,","plusieur","plutôt","point","pointera","pointeront","pollut","popular","posent","possibl","post","posts:","pour","pour,","pourquoi","pourrait","pouvez","pouvon","practic","practice,","pratiqu","pratique,","pratique.","pre","predict","prefer","prefix","premier","premièr","prend","prendr","prennent","preserv","preservest","preservestate:","pretti","previou","prevstat","pri","princip","principal","principles:","probabl","problem","problèm","problème,","process.env.node_env","proch","prochain","procéder","procédon","procédur","product","product.categori","production!","production,","productivity.","productivité","products)","products,","products.j","products:","produira","produit","profil","profond","profondé","program","programm","project","project.","projet","projet.","promess","promesses.","promis","promise((resolve,","promise,","promise:","promise。详细介绍","promise，并且","promise：","prop","propag","propagé","proper","properly,","properti","properties,","properties:","properties?","property)","property,","property:","proposal)","proposal),","proposit","propr","propriété","provid","préalable.","précédent","précédent.","préfix","préférenc","préférences)","prémutation.","présenteron","préserver","prévisible.","pui","puisqu","puisqu'un","puiss","purposes.","put","qu'accéd","qu'aucun","qu'avec","qu'est","qu'export","qu'un","qu'état","quand","que","quel","quell","quelqu","queri","qui","quickli","quit","quot","rabattr","racin","racine)","racine,","racine.","racines.","raison","raisonn","rajout","ranger","rangés.","rapid","rappel","rappelez","rather,","rattaché","re","reach","react","reaction","reactiv","reactive,","reactive.","read","real","realiti","realli","reason","receiv","recevoir","recevront","recharg","record","record,","redux","redux:","refer","reference,","regardon","regist","registered,","registermodule(path:","registr","registration:","regroup","regroupé","reject)","releas","reli","reload","reload.","relèv","remain","rememb","remov","remplac","remédier,","rend","render","rendering.","rendez","rendr","rendu","renvoi","renvoyé","repetit","replac","replacestate(state:","represent","représent","request","request,","requiert","requir","require('./actions').default","require('./modules/a').default","require('./mutations').default","require('inject","requêt","resolv","resolve()","resolved.","resort","respect","respons","rest","restreint","restrict","result","retenir","retour","retourn","retourné","retournée.","retriev","retrouv","return","reus","reusable,","reuse.","revient","reçoit","reçoiv","reçu","right","root","root:","rootgett","rootgetters)","rootgetters.somegett","rootgetters.someothergett","rootstat","rootstate)","rootstate,","rootstate.count","rootstate.count)","rout","router","rule","rules,","run","runinnewcontext","règle","règle.","règles,","réactif","réactif.","réactifs,","réactifs.","réaction","réactiv","réactivité","réalis","réalité","récupèrent","récupérat","récupérer","récursiv","réflexion","référenc","régulièr","répons","répétitif","résolus.","résout","résultat","réutilis","réutilisable,","réévaluat","réévalué","s'abonn","s'assur","s'il","s'intègr","s'occup","s'évapor","sachant","sain","saisit","same","same:","san","saurez","sautez","sauvegard","sauver","save","savedcartitem","savedcartitems)","savez","savoir","scale","scale,","script","script,","se","second","see","seen","self","selon","sembler","send","separ","sera","serait","seront","sert","serv","server","server,","server/test","server。","serveur.","servic","set","setter","setter:","settimeout(()","setup","seul","seule.","seulement","shape","share","shop","shop.buyproducts(","shop.getproducts(product","short","should!","si","sibl","side","sight:","signifi","silent:","similair","similaire,","similar","similarly,","simpl","simple,","simplement","simplest","simpli","simplic","simplicité","simplifi","simplifié","simul","simulation.","simulé","simulées.","singl","singleton","singleton.","singleton?","situat","situation,","snapshot","snapshots,","socket.emit('update',","socket.on('data',","soit","solut","some_mut","someact","somegett","somemut","someotheract","someothergetter:","sometim","son","sont","sorti","sortirez","sou","souhaitez","souhaitiez","souhaitons.","sourc","souvent","spa","spa,","specif","split","spread","spécialement","spécifiqu","ssr","stage","start","started.","state","state'а","state)","state,","state.","state.a,","state.b","state.count","state.count++","state.count,","state.count`","state.obj","state.obj.messag","state.products.filter(product","state.some.nested.module.a,","state.some.nested.module.b","state.subtre","state.todos.filter(todo","state.todos.find(todo","state:","state;","stateafter)","statebefore,","state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割：","state。你可以通过","state。用于服务端渲染。","state。这在你想要重用","state，例如从一个服务端渲染的应用保留","state，驱动应用的数据源；","static","statiqu","step","still","stockag","stop","store","store'","store)","store,","store.","store.commit","store.commit('increment')","store.commit('increment',","store.commit('receive_data',","store.commit('receivedata',","store.commit({","store.commit,","store.commit:","store.dispatch","store.dispatch('actiona').then(()","store.dispatch('increment')","store.dispatch('incrementasync',","store.dispatch(namespac","store.dispatch({","store.dispatch:","store.gett","store.getters.","store.getters.donetodo","store.getters.donetodoscount","store.getters.gettodobyid(2)","store.getters:","store.getters。","store.hotupdate()","store.hotupdate():","store.hotupdate({","store.j","store.js,","store.registermodul","store.registermodule('a',","store.registermodule('mymodule',","store.registermodule(['nested',","store.registermodule:","store.st","store.state,","store.state.a","store.state.b","store.state.count","store.state.count,","store.state.count，是因为我们想要更明确地追踪到状态的变化。这个简单的约定能够让你的意图更加明显，这样你在阅读代码的时候能更容易地解读应用内部的状态改变。此外，这样也让我们有机会去实现一些能记录每次状态改变，保存状态快照的调试工具。有了它，我们甚至可以实现如时间穿梭般的调试体验。","store.state.mymodul","store.state.nested.mymodul","store.state.nested.mymodule.","store.subscribe((mutation)","store.subscribe((mutation,","store.subscribe(mut","store.subscribeaction((action,","store.unregistermodule(modulename)","store.unregistermodule(modulename).","store/modul","store:","stores.","store。例如，同步","store。创建过程直截了当——仅需要提供一个初始","store（下面是个大概例子，实际上","store（仓库）。“store”基本上就是一个容器，它包含着你的应用中大部分的状态","store）。","store）：","store，他们公用同一个模块","store，可能需要考虑模块的空间名称问题。对于这种情况，你可以通过插件的参数对象来允许用户指定空间名称：","store，大概长这样：","straightforward","strict","strict,","strict.","strict:","strictli","string","string):","string,","string.","string]:","structur","structure:","style","sub","subir","subject","subscrib","subscribe(handler:","subscribeaction(handler:","success","succinct","succinct!","succè","such","suffire.","suivant","suivent","suivez","sujett","sumwithrootcount","support","supposon","supprim","sur","sure","surtout","swap","sync","synchron","synchrone.","synchrones.","synchronis","synchronous.","synchronous?","syntax","syntax:","syntaxique),","syntax）","system","system,","systèm","séparant","séparer","séparé","séparés.","tableau","tag","tag,","tags.","tailor","take","tant","tard.","tasks):","tediou","tell","temp","template:","temps.","tentera","term","terme.","termes,","terminé","test","test,","test.","test:","testact","testaction(actions.getallproducts,","tester","tester,","tester.","tests.","text","text:","that'","that,","that:","them.","them:","then:","there'","thing","think","this,","this.","this.$stor","this.$store.","this.$store.commit('updatemessage',","this.$store.commit('xxx')","this.$store.commit('xxx'),","this.$store.dispatch('xxx')","this.$store.dispatch('xxx'),","this.$store.getters.donetodoscount","this.$store.state.count","this.$store.state.obj.messag","this.$store.state.todos.filter(todo","this.count","this.count++","this.localcount","this:","through","throw","thrown.","thu","time","times):","title:","to:","todo.done)","todo.done).length","todo.id","todos:","togeth","toggl","tool","tools.","total","tou","toujour","tournon","tout","tracer","track","trackable!","tracé","trade","transact","transactions.","transactions:","transform","travel","traçable,","tree","tree!","tree)を使います。つまり、この単一なオブジェクトはアプリケーションレベルの状態が全て含まれており、\"信頼できる唯一の情報源","tree,","tri","trick","tricki","trigger","triggered,","trivial","triviale,","troisièm","trop","trouv","trouviez","true","true,","true.","true}","true，它允许在命名空间模块里分发根的","true，它允许在命名空间模块里提交根的","true：","truth","truth\".","truth)\"","truth)です。","trè","turn","two","two,","type","type,","type.","type:","types'","types.j","typescript","typescript,","tâche","téléchargement","un","un.","under","understand","unidirectionnel","uniqu","unique,","unit","unitair","unlik","unmaintain","unpkg.com","unpredict","unregist","unregistermodule(path:","up","up,","updat","updatemessag","updates.","upfront.","url","us","us,","us:","usage:","user","users,","usual","util","utilis","utilisateur","utiliser.","utilisez","utilison","utilisé","utilitair","v","valeur","valu","value)","value,","value:","value，然后侦听","variou","ver","verbeux","verbeux.","verbos","verbose.","verbose:","veri","verron","versa.","version","version/tag","veut","via","vice","vider","view","view,","view.","view，以声明方式将","visualis","vm.$watch","vo","voici","voilà","volé","vont","votr","vou","voulez","vouloir","voulon","vous.","voyag","voyez","vrai","vraiment","vs","vs.","vue","vue'","vue({","vue,","vue.","vue.j","vue.js.","vue.set(obj,","vue.use()","vue.use():","vue.use(vuex)","vue.use(vuex))","vue.use(vuex)):","vue.use(vuex)）：","vue:","vue?","vue@2.5+","vue@2.5+,","vue@>=2.5,","vue@>=2.5，反之亦然。","vuex","vuex,","vuex.","vuex.mapst","vuex.stor","vuex.store({","vuex:","vuex?","vuex@3.0+","vuex@>=","vuex。一个简单的","vuex。虽然将所有的状态放到","vuex：","vuex？","vérifi","vérifier","véritabl","vérité","wait","want","want.","watch","watch(getter:","watcher","watching,","way","way\"","we'd","webpack","webpack'","webpack'ом","webpack,","webpack.","webpack.config.j","webpack在真实浏览器环境中进行测试。","websocket","weigh","well.","whenev","whether","why?","within","without","words,","work","world","worth","write","written","y","yarn","you'v","you.","yourself","you’ll","zero","zone","{","{root:","{{","{})","{},","|","||","}","})","}))でこれを実現できます。","}).","})。","},","}]","}`","}`,","}`.","}}","}}`,","«","«геттеры».","»","»)","»).","»,","».","à","ça","ça,","ça.","échell","échelle,","écouter","écrire","écrite","également","également,","épargn","étape","état","états,","été","éviter","évènement","évènements.","ête","être","œil","а","а,","абрамова,","абстракции","автоматически","автоматически.","автоматически:","автора","альтернативы","аналогичная","аналогично","аналогично,","аналогичным","аргумент","аргумента","аргумента,","аргументами","аргументов","аргументом","аргументом,","аргументом.","аргументом:","аргументы","аргументы:","архитектурное","архитектурой","асинхронного","асинхронности","асинхронны,","асинхронные","асинхронный","асинхронными","асинхронных","атрибут","беде,","без","бессмысленно.","библиотека","библиотеками","библиотеки","библиотеки,","благо","благодаря","более","большая","больше","большим,","большинстве","большое","большой","большую","браузера.","браузерах","браузерах.","браузере","будем","будет","будут","бы","были","было","быстро","быть","быть,","в","важнее,","важное","вам","вариантах","вас","ваш","вашего","ваши","ваших","вдохновлённого","веб","вернуть","вероятно","вероятно,","версии","версию","весьма","взаимодействие","взгляд","взгляда","виде","включает","включения","включить","влияет","влияние","вложенного","вложенность","вложенные","вложенных","вложено","вместо","вне","внесения","внести","внешним","внешних","внимание,","внимание:","внутри","во","вовсе","возвращаемую","возвращаемый","возвращаемым","возвращает","возвращают","возвращающее","возвращающие","возвращающий","возвращающую","возвращая","возвращение","возможно","возможно,","возможной","возможности","возможности,","возможность","возможностью","возможны","возможные","возникающие","возникновении","вот","вполне","времени\"","времени\".","время!","вручную","все","всегда","всего","всем","всех","вспомогательная","вспомогательного","вспомогательную","вспомогательные","вспомогательным","вспомогательных","встроенные","встроенный","всё","всём","вторую","вторым","входящих","вы","выбрасывать","вывода","выглядеть","вызвали","вызван","вызванных","вызвать","вызов","вызова","вызове","вызовут","вызовы","вызываем","вызываемые","вызывается","вызывать","вызывать,","вызываются","вызывая","выключили","вынесите","вынести","выносить","выполнения","выполнены","выполнять","высокоуровневых","вычислениями,","вычисляемого","вычисляемое","вычисляемые","вычисляемыми","выше","гарантирует,","генерирующий","геттер","геттера","геттера,","геттера:","геттерам","геттерам.","геттерами","геттеров","геттеров,","геттеров:","геттеры","геттеры,","геттеры.","геттеры...","гидрации","главах","глобального","глобальное","глобальной","глобальном","глобальному","глобальные","глобальный","глобальных","глубоко","глубокое","глупо:","го","говоря,","горячая","горячей","горячую","готовыми","да","давайте","даже","далее","далеки","данного","данные","данный","данным","данным,","данных","данных\":","данных,","данных.","дать","даёт","два","двунаправленного","двухсторонние","действие","действие.","действие:","действии","действий","действий,","действий.","действительно","действительности","действия","действия,","действия.","действия:","действиями","действиях","декларативно","дела,","делает","делать","дерева","дереве.","дерево","деревом","дереву","дескриптов","дескриптор","деструктуризация","деструктурирующее","динамическая","динамически","динамический","диспетчеризация","диспетчеризировать","для","до","до:","добавить","добавлена","добавление","добавлении","добавлено","добавлены","добавлять","добавляют","добавляя","добиться","доводилось","довольно","дожидаемся","документации","документации.","долгосрочной.","должен","должна","должно","должны","должным","дополнительного","дополнительные","дополнительный","достаточно","достижима","доступ","доступа","доступно","доступны","доступные","доступный","дочерним","дочерних","другие","другие):","другим","другими","других","другое","другой","другом","дублировать","дэна","его","единого","единое","единому","единственного","единственный","единственным","если","естественным","есть.","ещё","её","же","же,","жизни.","за","завершения","завершилось?","зависеть","зависимостей","зависимостей.","зависимости","зависимость","зависимостях","зависит","зависят","зависящие","загрузчиков","загрязнение","заданное","задуматься","заказа","заключается","залогирована","залогированной","залогированные","замена","заменить","замену","замены","заменяем","заметим:","заметно,","замечание:","заниматься","занимающиеся","записана,","записи","записи,","записывая","запись","запись:","запрашиваем","запрещено.","запрос","запросов","запуск","запуска","запускает","запускать","запускаются","запустите","запустить","зарегистрирован","зарегистрирован,","зарегистрированные","зарегистрированный","зарегистрировать","зарегистрируем","заскучать,","заставить","заставляет","заставляющими","затем","заточенной","затратным","затруднить","зачастую","здесь","знать","знать,","значение","значением","значении","значения","значит,","значительных","и","и,","идеала.","идея,","идёт","из","избегать","избежать","известные","излишней","изменение","изменений","изменения","изменения.","измените","изменится","изменить","изменяем","изменять","изменяться","изменяющими","изначальное","изрядно","изучим","или","им","имеет","имена\"","имени","именно","именованного","именованный","иметь","имеют","имитации","импортирования","импортировать","имя,","имён","имён,","имён.","имён:","инициализации","инициализацию","инициализировать","инициализируя","инициирована,","инициирования","инициированы","инициировать","инициируем","инициируемые","инициируемых","инициирует","инициируют","инкапсулируются","иногда","инструментах","инструментов","инструменты","инструменты,","интегрирует","интегрируется","использован","использование","использованием","использовании","использования","использовать","использовать,","использоваться","используем","используемая","используемую","используемые","используемый","используемым","использует","используете","используется","используйте","используются","использующей","использующий","используя","истины\",","истины\".","история","источник","источником","исхода","исходное","исходящих","исчезает","их","к","каждая","каждого","каждое","каждой","каждую","каждый","как","какие","каких","какой","камни,","качестве","ключу.","ко","когда","когда:","код","кода","кода,","кода.","коде","количество","количеству","коллбэк","коллбэк,","коллбэками,","коллбэки","коллбэков","командой","комбинации.","комплекте","композиция","компонент","компонент,","компонента","компонента,","компонента:","компонентам","компонентами","компонентах","компонентов","компонентов,","компонентов.","компоненту,","компоненты","компоненты,","компоновать","конечное","конкретного","конкретное","конкретную","констант","константу","константы","конструктора","контейнер,","контекст","контекста,","контексте","конфигурации","конфигурацию","конфликтует","концепцией","концепции","концепции,","концепций","концепций,","копирование","корзине","корзину","корзины","корневого","корневое","корневое.","корневой","корневому,","корневые","коробки\"","которого","которое","котором","которому","которые","который","которых","красноречивыми","кратковременная","критерию:","кроме","крупного","крупномасштабные","крупных","куда","кэшируются,","лаконично","легко","лежащая","ли","либо","либо:","линтеры","лишь","лог","логика","логики","логики.","логированием","логирования","логирования,","логируются","логирующий","локально,","локальное","локальному","локальные","локальный","локальным","лучше","любая","любого","любую","любые","м","магазина","массив","массива","между","менее,","менять","мере","местами","местах.","метод","метода","метода,","методах","методов","методом","методы","механизм","механизмом","многократного","многословнее,","многословности","многословный.","многословным","множество","могло","могут","модуле","модуле.","модулей","модулей,","модулей.","модулем","модули","модули,","модули.","модуль","модуль.","модульного","модульной","модульности","модульный","модуля","модуля).","модуля,","модуля.","модулям","модулями","модулях","можем","может","можете","можно","момент","момента","моментальных","моменту","мутацией","мутации","мутации,","мутации.","мутации:","мутации;","мутаций","мутаций,","мутаций.","мутаций/действий.","мутаций:","мутацию","мутацию,","мутацию.","мутация","мутациями,","мутациях.","мы","на","наблюдателей).","наблюдение","наблюдения,","нагрузка","нагрузки","нагрузкой","нагрузку","нагрузку:","называемый","найти","накладывает","наконец,","наличие","нам","намерения","намеренно","наоборот.","написания","написать","например","например,","например:","напрямую","напрямую:","напрямую?","наряду","наследует","настройки","наступления.","находится","находящиеся","начале.","начало","начиная","начните","начнём","начнём.","наш","нашего","наши","не","невозможно","невозможным:","независимо","некоторые","некоторых","нельзя.","немного","нему","ненужному","необходимо","необходимости","необходимости.","необязательно,","неплохая","неплохо","непосредственное","непредсказуемость","неприятно,","непросто:","нескольким","несколькими","нескольких","несколько","несложные","несоответствующих","нет","нет.","нетривиального","неудачи","неудачного","никакой","ним","но","нового","новую","новым.","новыми","новых","нормально","нужно","нужную","нужны","нужны,","нём:","о","оба","обескураживающим.","обеспечиваем","обеспечивает","обеспечит","обеспокоить","обнаружения","обновим","обновление","обновлений.","обновления","обновляются","обновлённые","обозначения","обойти","обойтись","обрабатывать","обработать","обработка","обработки","обработку","обработчик","обработчик\".","обработчик.","обработчика","обработчике","обработчики","обработчиков","обработчиков.","обработчиком","образом","образом,","образом:","обратите","обратитесь","обратиться","обращаться","обсудим","общее","объект","объект,","объект.","объекта","объекта,","объекта:","объекте","объектной","объектный","объектов","объектов,","объектом,","объекту","объявление","объявления","обычно","обычном","обязаны","ограничений","ограничения","ограничены","один","одна","однако","однако,","одни","одним","одно","одновременно.","одной","одном","одному","однонаправленно","одностраничные","оказаться","оказывать","оказываются","окружении","он","она","они","оператор","оператором","операции","операции:","операций","операций,","операций.","описательной:","опосредованно,","определении","определения","определять","определяя","определённых","опции","опции):","опции:","опций,","опционально","опцию","опция","организации","организовать","основе","основная","основном","основные","основных","основывающимся","основывающихся","основываясь","особенно","оставляет","остаётся","осуществляет","от","ответ","отдать","отдельно","отдельности.","отдельные","отдельный","откройте","откуп:","отладке","отладке.","отладке:","отладки)","отладки,","отладки.","отлаживаете","отличают","отличие","отличиями:","отображение","отобразить","отражая","отследить.","отслеживание","отслеживать","отслеживаться","отфильтрованной","официальным","оцениваем","очевидными","очень","очистим","очкам:","ошибки.","ошибку,","ошибку.","пакетов.","параметр","параметр,","параметра:","параметрами","параметризированный","параметров","параметров.","параметром:","паттерн","паттернов,","первого","первое,","первой","первый","первым","первым?","перед","передаваемом","передавать","переданного","переданное","переданному","переданных","передать","передача","передаются","передаёте","передаётся","переиспользования,","переключения","переменная","пересчитаны","писать","плагин","плагина","плагина:","плагинам","плагинам,","плагинах.","плагинов","плагинов,","плагину","плагины","плагины,","по","побочные","поведение","повторно","повторное","повторном","подводные","подделкой","поддельная","поддельное","поддельную","поддельный","поддельным","поддельным.","поддерево","поддерживаемость","поддерживает","поддерживать.","поддерживают","подключение","подключите","подменить","подменять","подмодули","подмодули.","подобны","подобным","подписывается","подробнее","подробно","подружить","подход","подхода","подхода,","позволяет","позволяют","позволяющие","позднее","показаться","покуда","покупок.","полагаться","полезно","полезно,","полезные","полезным","полезным,","полей.","полем","полной","полностью","получаем","получает","получать","получают","получающая","получение","получившаяся","получится","получится.","получить","пользователей","пользователи","пользователя","пользователя.","пользователям","поля","поместив","помещаете","помещающий","помещения","помещены","помимо","помните","помнить","помогает","помогающую","помочь","помощи","помощью","понадобится","понимание","понятий.","понятия","понять","понять,","попросту","попытка","поскольку","после","последующих","посмотреть","поток","потока","потоков?","потомкам","потому","потребностей","потребоваться","потребует","похоже","похожи","почему","почему?","поэтому","появлении","появлению","правил,","правил.","правила","правилам","правилам,","правило:","практике","превращается","пределами","предложить","предметом","предоставляет","предоставляющую","предоставляя","предположим,","предсказать,","предсказуемость","представление","представлением.","представлений","представляют","представьте,","предыдущее","прекращения","префиксов","при","приближённым","приведет","приведённая","приведённой","привести","привнесение","привнесения","приводят","привязать","привязки","придётся","прикреплено","приложение","приложением;","приложении","приложении.","приложении:","приложений","приложения","приложения,","приложения.","применения","применены","применив","примените","применяем","применяя","пример","пример:","примеров","примером","примечание:","примешиваем","принимает","принимают","принципов:","присваивание","присоединённом","приспособиться","приходилось","приходится","проблема","проблемой,","проблему,","проверяем,","программы.","продвинутые","продуктивность","проекта.","проекта:","проектах.","производительности,","производительности.","производительную","производным","произойдёт","произойти.","происходит","происходят,","происходящие","проксировании","проксируем","проксирует","проксирующие","простейшего","простейшее","просто","просто,","просто:","простого","простое","простой","простота,","пространства","пространствами","пространстве","пространство","пространством","пространству","простые","простых","протяжении","проще","псевдонимы","пути","пытаться","работу","работы","раз","разбираясь","разбить","разделять","разделяя","раздуться.","различных","размера,","разных","разобрались,","разработка","разработке","разработки","разработки.","разработчика","разработчика.","разработчиков","разрегистрирует","разрешает","разрешается","разрешающийся","разрешения","рамках","раскрывать","расположения","распространения","расскажем,","рассматриваем","рассматривать","рассматриваются","рассмотрении","рассмотрим","расширением","расширения","реагировать","реактивная","реактивно,","реактивности","реактивность","реактивны.","реактивных","реализации","реализация","реализован","реализовать","реализующего","реальной","реальности","реальных","регистрации","регистрация","регистрирует","регистрируются","режим","режима","режиме","результат","результаты","результирующие","релиз","рендерингом","репозиторий","решая","решение","родительского","родителям","роста","с","сам","самая","самого","самодостаточными","самое","самое,","самом","самостоятельное","самую","самые","самый","самым:","сборке.","сборки","сборкой","сборку,","сборку:","сборщик","свежий","свои","своим","своих","свойств","свойства","свойства,","свойства.","свойства:","свойства?","свойствами","свойствами:","свойство,","связанными","связаны","связать","связке","связывания","сделаете","сделать","себя","сейчас","сервера","сервера.","сервис","сервис,","сеттером:","синглтон","синглтон?","синглтонов","синтаксис","синтаксис,","синтаксис:","синхронизации","синхронизировать","синхронном","синхронные","синхронными","синхронными.","синхронными?","системе","систему","системы,","ситуацией,","ситуации","ситуации,","ситуациями,","скачать","склонировать","скорее","след","следует","следуете","следуют","следующей","следующие","следующим","следующими","следующих","следующую","слепки","слепки,","слепков","слепок\"","слишком","слияния","словами,","сложнее,","сложно","сложными","сложных","служит","случае","случае,","случаев","случаях","смотрите","снимающие","снятие","со","собираем","соблюдаете","соблюдения","собой","собрать","собственно,","собственное","собственным","собственными","событие","событий.","события:","событиями.","совершается","совершать","совершения","совершенно","совместно","соглашение","содержать","содержаться","содержащий","содержащим","содержимое","содержимому","содержит","сожалению,","создавать","создадим","создание","создании","создания","создано,","создать","создающую","создаём","создаёт","создаёте","сокетов","сокетом","сомневаетесь.","соответствующие","соответствующим","соседних","состоит","состояние","состояние,","состояние.","состоянием","состоянием\"?","состоянием,","состоянии","состоянии,","состояний,","состоянию","состоянию,","состояния","состояния,","состояния.","состояния:","состояния;","сохранение","сохранением","сохранения","сохраним","сохранить","сочетании","специально","списка","список","способ","способом","справки","справочник","спровоцирует","сработает.","сравнение","сравнить","среднего","ссылка","ссылке","ссылки","ссылку","сталкиваться","становится","становится,","старые","старый","статические","статусе","стоит","стороне","стороны,","страдает","стрелочные","строгий","строгого","строгом","строк:","строки","строковый","строкой","строку","структура","структурированность","структуру","структуры","сути","существенно","существует","существуют","существующий","считать","счёт","счётчик","счётчик.","счётчик:","счётчиком:","та","так","так:","также","такие","таким","такими","таких","такова","такого","такое","такой","таком","те","тег","тег,","тегов","текущего","текущее","тем","теперь","терминале:","тестирование","тестировании","тестирования","тестирования.","тестировать","тестировать.","тестируемого","тестов","тестов.","тесты","тип","тип:","типа","типами","типов","то","товаров","товары","тогда","тогда,","того","того,","тоже","той","только","том","том,","тот","традиционную","транзакции:","транзакциями;","требует","требуется","требуя","трюк","тут","у","убедитесь,","увеличить","уверенным,","увидим,","удалить","удаётся","удобными","удостоверьтесь,","уже","узнать,","укажите","указав","указан","указана","указание","указания","указанного","указанному","указанным","указать","указываем","указывает","указывать","указывая","улучшаем","умолчанию","умолчанию,","умолчанию.","управлении","управления","управлять","управляющий","упростить","упрощает","упрощения","упрощён,","упрощённо","упускаем.","усложнению","усмотрение","успеха","успешного","устанавливает","установите","установка","установки","утилиты","уточнение","ухудшения","учёта","фабрику","файл","файл,","файле","файлов","файлы.","фактически","фиксируем","финальной","форм","формата","формате","формате:","формирование","формировании","фрактальна:","функции","функции,","функций","функциональности","функциональность","функцию","функцию,","функцию.","функция","функция,","функциям,","хватит","хелпер","хотим","хотите","хотя","хранилищ,","хранилища","хранилища)","хранилища,","хранилища.","хранилища:","хранилище","хранилище,","хранилище.","хранилище;","хранилищем","хранилищу","хранилищу.","хранимому","хранит","хрупки","хуки","целиком","целиком,","ценой","центральным","центре","цитата","частей:","части","часто","часто.","часть","чаще","чем","через","читателям","чтении","чтения.","что","чтобы","чётко","шагом.","шины","эквивалентна","экземпляр","экземпляра","экземпляра,","экземпляров","экспорт","экспорт/импорт","экспорта","экспорта:","экспортировать","экспортируем","элемент","элемента","элементов","элементов)","эта","этапе","эти","этим","этими","этих","это","это,","этого","этого,","этой","этом","этому","этот","эту","эффективного","эффекты","являются","являющиеся","явно","явным","—","“store”","│","└──","├──","、","あらかじめ全ての必要なフィールドによって、ストアの初期状態を初期化することが望ましいです","いつ、vuexを使うべきでしょうか？","いま、開発ツールのミューテーションのログを見ながら、アプリケーションのデバッグを行っていることを想像してください。全てのミューテーションをログに記録するためには、ミューテーションの前後の状態のスナップショットを捕捉することが必要です。しかし、上の例にあるミューテーション内の非同期コールバックは、それを不可能にします:","いろいろな","からの良い引用です:","からローカルステートを参照するときは、通常の関数を使わなければいけません","から直接クローンし","が","がストアからオブジェクトを返す算出プロパティ","がトリガーされたアクションハンドラによって返された","がトリガーとなって実行されます:","が含まれます。詳細はこちら","が変わるたび、算出プロパティの再評価が発生し、関連した","が完了するのを待機する","が導入されます:","が必要なだけかもしれません。しかし、中規模から大規模の","が必要になります。","が必須、逆もまた同様です。","が戻り値として返ってくることになります。","ここでは","こちらが","このような場合は、第1引数としてモジュールの名前空間文字列をヘルパーに渡すことで、そのモジュールをコンテキストとして使用してすべてのバインディングを行うことができます。上記は次のように単純化できます。","この機能は開発ツール内にミューテーション・フィルタが実装された後に非推奨になる予定です。","この章では、vuex","これから","これが","これで","これにより、コンポーネントツリーは大きな","これにより、複数のモジュールが同じミューテーション/アクションタイプに反応することができます。","これは、実際には","これはいくつかの要素をアプリ自身に含んでいます:","これは一見ばかげて見えるかもしれません。つまり、カウントをインクリメントしたいときに、どうして直接","これは予測可能な方法によってのみ状態の変異を行うというルールを保証し、アプリケーション内の全てのコンポーネントのための集中型のストアとして機能します。","これらのコンセプトを深く理解することは、vuex","これらのルールに従っている限り、プロジェクトをどのように構造化するかはあなた次第です。もしストアファイルが大きくなり過ぎたら、単純にアクションやミューテーション、ゲッターをそれぞれ別のファイルに切り出すことができます。","これらは\"単方向データフロー\"のコンセプトの極めてシンプルな責務です:","さらに、createnamespacedhelp","さらに、状態管理に関わる概念を定義、分離し、特定のルールを敷くことで、コードの構造と保守性を向上させることができます。","さらに名前空間をネストする","しかし、このパターンでは、コンポーネントがグローバルストアシングルトンに依存してしまいます。","しかし、単純さは、共通の状態を共有する複数のコンポーネントを持ったときに、すぐに破綻します:","してから、ストアをつくってみましょう。vuex","すべてのトリガーされたアクションハンドラを解決するpromiseを返します。詳細","すると次のようにできます:","する機構を提供しています:","そして","そして、vuex","そして、このように利用することができます:","そのような場合に役立てるため","そのコールバックは、ミューテーションがコミットされた時点ではまだ呼び出されていません。そして、コールバックが実際にいつ呼び出されるかを、開発ツールは知る術がありません。いかなる状態変更でも、コールバック内で起きる場合は本質的に追跡不可能です。","それから下記コマンドを実行します:","それぞれのミューテーションの後に呼ばれます","それでは、始めましょう！","それなりに手の込んだアプリケーションであれば、モジュールを活用する必要が出てきそうです。プロジェクトの構造の例は以下のようになります:","それに対処するための","それらが必要になったときに知るのです。","で","で、シンタックスをかなり単純にできます:","で、状態やゲッターにアクセスできます。なぜコンテキストオブジェクトがストアインスタンスそのものではないのかは、後ほどモジュールで説明します。","です","です)","での実行","では","ではdefineplugin","ではenvifi","では、","では、コンポーネントから共有している状態を抽出し、それをグローバルシングルトンで管理するのはどうでしょうか？","ではステートフルなシングルトンは避けます。)","ではストアをモジュールに分割できるようになっています。それぞれのモジュールは、モジュール自身の状態（state）、ミューテーション、アクション、ゲッター、モジュールさえも内包できます（モジュールをネストできます）","では全てのミューテーションは同期的に行うという作法になっています:","でアクセスします。","でアクセスできます:","でコンポーネント内でアクションをディスパッチできます。あるいはコンポーネントのメソッドを","でストアオブジェクトの状態を参照でき、また","でテストをバンドルでき、それを直接","でユニットテストしたい主な部分はミューテーションとアクションです。","でユーザーが入力するとき、直接","で作られたカウンターアプリをみてみましょう:","で各コンポーネントから参照することができます。","で実行できます。別の方法として、本当のブラウザでテストを実行するためには","で新規追加","で有効にできます)、すべての子コンポーネントにストアを","で異なるモジュール内の複数のアクションハンドラをトリガーすることができます。そのようなケースでは、全てのトリガーされたハンドラが解決されたときに解決する","で返すことです。","と","といったイベント登録のようなものです。ミューテーションハンドラを起動するためにはミューテーションのタイプを指定して","として公開されています","として機能します。これは、通常、アプリケーションごとに1つしかストアは持たないことを意味します。単一ステートツリーは状態の特定の部分を見つけること、デバッグのために現在のアプリケーションの状態のスナップショットを撮ることを容易にします。","として深く入れ子になったコンポーネントに渡すのは面倒で、兄弟コンポーネントでは単純に機能しません。二つ目は、親子のインスタンスを直接参照したり、イベントを介して複数の状態のコピーを変更、同期することを試みるソリューションに頼っていることがよくあります。これらのパターンは、いずれも脆く、すぐにメンテナンスが困難なコードに繋がります。","となり、どのコンポーネントもツリー内のどこにあっても状態にアクセスしたり、アクションをトリガーできます!","とは何か?","とは何か？","と仮定すると、v","と全く同じ問題です。従って解決策も同じです。モジュールの状態を宣言するために関数を使用してください","と動作させているときと同じく、リアクティブな値に関する注意が必要であることを意味します:","と同じ","と同じ。ただしモジュール内に限る","と同じか、モジュール内にあればローカルゲッター","と同じか、モジュール内にあればローカルステート","と同じです","と書くか、もしくはコンポーネントのメソッドを","どのコンポーネントの内部でも簡単にゲッターを利用することができます:","なしで問題ないでしょう。単純な","なアクションにディスパッチできる","なミューテーションにコミットできる","には、一般的なデバッグに利用する用途の備え付けのロガープラグインがあります。","によって","によってリアクティブになっているので、状態を変更すると、状態を監視している","によって名前空間に分けることができます。モジュールが登録されると、そのゲッター、アクション、およびミューテーションのすべてが、モジュールが登録されているパスに基づいて自動的に名前空間に入れられます。例えば:","によって特定のバージョン/タグを利用することもできます。","にマッピングさせる","にマッピングする","に変更する","に属する状態の一部で","に渡すこともできます。","に渡せるように、複数のオブジェクトをひとつにマージするユーティリティを使わなければいけません。しかし、オブジェクトスプレッド演算子","に直接依存関係を持つことはないでしょう。したがって、単純に","に第3引数を渡すことで、特定のミューテーションをプラグインに気付かせないようにすること（\"silence\"）ができます:","に組み込む","に置き換えるために、","に置くことで、状態の変更がさらに明示的、デバッグ可能になりますが、ときにはコードを冗長でまわりくどいものにします。状態の一部がひとつのコンポーネントだけに属している場合は、それをローカルの状態として残しておくとよいでしょう。あなたは、トレードオフを考慮した上で、あなたのアプリの開発ニーズに合った決定をすべきです。","に表示するにはどうすればよいのでしょう？","に追加の引数を渡すこともできます。この追加の引数は、特定のミューテーションに対するペイロードと呼びます:","の","の3番目の引数として","のvm.$watchメソッドと同じオプションをオプションのオブジェクトとして受け付けます。","のあとで","のいくつかの有用な機能が使えません。代わりに、セッターで双方向算出プロパティを使うアプローチがあります。","のために","のとき、ssr","のような","のような外から渡されるデータのためにミューテーションをディスパッチします。","のコアコンセプトについて、以下を学習します。","のコアコンセプトについて詳しく説明していきます。まずは状態（state）からはじめましょう。","のシンタックスを利用しています。","のステート","のストアの状態を変更できる唯一の方法は、ミューテーションをコミットすることです。vuex","のスプレッドシンタックス（object","のミューテーションがトリガーされたときに、このハンドラが呼ばれる\"","のミューテーションは、通常の","のミューテーションはイベントにとても近い概念です:","のミューテーションハンドラ内部で処理されていないため、エラーを投げます。","のモジュールを使っていて","のモジュール出力のため、ここでは","のリアクティブなルールに則ったミューテーション","の中に置くべき、というわけではありません。多くの状態を","の作者、dan","の値をバインディングし、input","の呼び出しと、複数のミューテーションのコミットをします:","の実装,","の実装を変更しましょう:","の引数分割束縛（argument","の形式でログ出力されます","の形式で提供されます","の更新をトリガーします。","の最新のリリースを指します。https://unpkg.com/vuex@2.0.0","の注入が必要です）:","の注入が必要）で、コンポーネント内でミューテーションをコミットできます:","の状態がミューテーションハンドラの外部で変更されたら、エラーを投げるようになります。これで全ての状態変更がデバッギングツールで明示的に追跡できることが保証されます。","の状態の変更を行うと、エラーが投げられます。","の状態を","の状態（state）を第1引数として取得し、実際に状態の変更を行います:","の算出プロパティ名（comput","の粒度の細かいリアクティビティシステムを利用するよう特別に調整して実装されたライブラリだということです。","の背景にある基本的なアイディアであり、flux、","の設定を作成します（.babelrc","は","は、","は、ルートコンポーネントに","は、全てのミューテーションの後に呼ばれ、引数として、ミューテーション","は、共有状態の管理に役立ちますが、さらに概念やボイラープレートのコストがかかります。これは、短期的生産性と長期的生産性のトレードオフです。","は、各ミューテーションへのフックを公開する","は、基本的にアプリケーションの状態（state）を保持するコンテナです。単純なグローバルオブジェクトとの違いが","はこのモジュールのゲッターにローカライズされています","はオブジェクトを返すことに注意しましょう。どうやって、他のローカル算出プロパティと組み合わせるのでしょうか？","はゲッター関数の第3引数と第4引数として渡され、アクション関数に渡される","はディスパッチされたアクションごとに呼び出され、アクション記述子と現在のストア状態を引数として受け取ります:","はペイロードサポートする:","はモジュールのローカルステート","はリアクティブなので、ストアから状態を\"取り出す\"一番シンプルな方法は、単純にいくつかのストアの状態を","はローカルステートにアクセスでき、ルートのステートは","は前の状態を保存する","は効率的な更新のために、vue.j","は単一ステートツリー","は名前空間付きモジュールで","は実際のところ、あなたがコードを構造化する方法を制限しません。もっと正確に言うと、それより高いレベルの原理原則を適用させます:","は成功時のコールバックと失敗時のコールバックを受け取る","は自然な次のステップとなるでしょう。これは","ひとつの重要なルールを覚えておきましょう。それはミューテーションハンドラ関数は同期的でなければならないということです。なぜか？次の例で考えてみましょう:","ほとんどの場合、ペイロードはオブジェクトにすべきです。そうすることで複数のフィールドを含められるようになり、またミューテーションがより記述的に記録されるようになります:","まず知っておくべきことは","また","また、モジュールのゲッターの中では、ルートのステートは第3引数でアクセスできます:","または","また別のアクションで下記のように書くと:","もあわせて使います）:","もし、あなたが","もし、あなたが大規模な","もしこの関数を複数のコンポーネントで利用したくなったら、関数をコピーするか、あるいは関数を共用のヘルパーに切り出して複数の場所でインポートする必要があります。しかし、どちらも理想的とはいえません。","もしゲッターが複雑な計算を行っているならば、テストコードを書く価値があります。ゲッターはミューテーションと同様の理由でテストしやすいです。","もし触れたことがなければ、ぜひ触れてください！","もまた","もペイロードをサポートする:","もローカルステートを指すようになります。","や","より実践的な例として、ショッピングカートをチェックアウトするアクションを挙げます。このアクションは非同期な","を","を2番目の引数として受け取ります。","をみてみるのもよいでしょう。","をインストール","をインストールする","を作成するときに、ただ","を使うことができます","を使うということは、全ての状態を","を使ったブラウザでの実行","を使った最も基本的なカウンターアプリの例です。","を使って、モック化された依存関係を注入できるようにするモジュールファクトリーを返す","を使っている場合は、これは不要でしょう。","を使っていれば、ビルドツールにそれを処理させることができます:","を使ってテストファイルをバンドルすることができます。","を使用して、次のように書くことができます:","を使用してミューテーションをテストする例です（あなたの好きな任意のフレームワーク/アサーションライブラリを使用できます）:","を使用する。あるいは","を使用することで、アプリケーションの開発を行っている間のミューテーション、モジュール、アクション、ゲッターのホットリローディングをサポートします。browserifi","を使用することで、次のようにアクションを組み合わせることができます:","を使用することによって名前空間付けされたヘルパーを作成できます。指定された名前空間の値にバインドされた新しいコンポーネントバインディングヘルパーを持つオブジェクトを返します:","を使用するとき、vuex","を使用するにあたって不可欠です。","を使用するのは少しトリッキーです:","を使用できます。","を処理できることと、store.dispatch","を利用するとストア内に","を取り込むと自動的に","を受け取ります:","を受け取ります。","を受け取ります。言い換えれば、同じモジュールに接頭辞","を含むことができます。モジュールの状態は、モジュールのキーを使って、ストアのルートステートに結合されます。モジュールのミューテーションとゲッターは、第一引数としてルートステートの代わりに、モジュールのローカルステートだけを受け取り、モジュールのアクションの","を呼び出していることを確認しておいてください","を呼び出してミューテーションをコミットしないのか、と。ミューテーションは同期的でなければならないというのを覚えていますか？アクションはそうではありません。アクションの中では非同期の操作を行うことができます。","を呼び出すことでミューテーションをコミットできます。あるいは","を呼び出す可能性があるため、ミューテーションのテストよりも少し注意が必要です。アクションをテストするとき、通常、いくつかの段階でモックを作る必要があります。例えば","を呼び出す必要があります:","を呼び出せば、動的に登録したモジュールを削除できます。ただしストア作成（store","を変更します。厳格モードでは、この変更は明示的に","を定義することができます。それらをストアの算出プロパティと考えることができます。算出プロパティと同様に、ゲッターの結果はその依存関係に基づいて計算され、依存関係の一部が変更されたときにのみ再評価されます。","を導入した場合、冗長で恐ろしいと感じるかもしれません。そう感じることは全く普通です。あなたのアプリがシンプルであれば、vuex","を常に受け取り(モジュール内で定義されていれば、モジュールのローカルステートを受け取り)、指定されていれば第二引数に","を持つことができます。サーバサイドレンダリングに役立ちます。","を持つことできます。","を持つことできます。詳細","を指定するだけです:","を明示的に導入する必要があります:","を書き込まずに、モジュールアセットを使用することができます。名前空間オプションの切り替えは、モジュール内のコードには影響しません。","を最初の引数として、","を構築することなく、vuex","を構築する場合は、vue","を比較...","を活用できます。例えば","を渡します。","を直接変更する代わりにミューテーションをコミットする理由は、状態の変更を明確に追跡したいからです。このシンプルな規約は、あなたのコードの意図をさらに明確にし、コードを読んだ時にアプリケーションの状態の変更について、論理的に考えることができるようにします。加えて、私たちに全ての変更のログを取ったり、状態のスナップショットを取ったり、タイムトラベルデバッグを行うようなツールを実装する余地を与えてくれます。","を統合しています。","を自身でビルドする必要があります。","を複数回呼び出す必要があるとき）:","を調べます","を返します","を返すことです。","を返すことを想定している","を追加しなければならない","を開く","を開始する","アクション","アクション、これはビューからのユーザー入力に反応して、状態の変更を可能にする方法です。","アクションのテスト","アクションのディスパッチ","アクションのルートファイル","アクションは","アクションは、状態を変更するのではなく、ミューテーションをコミットします。","アクションはしばしば非同期処理を行いますが、アクションが完了したことをどうやって知れば良いのでしょう？そしてもっと重要なことは、さらに複雑な非同期処理を取り扱うために、どうやって複数のアクションを構成させるかということです。","アクションはペイロード形式とオブジェクトスタイルのディスパッチをサポートします:","アクションはミューテーションと似ていますが、下記の点で異なります:","アクションは任意の非同期処理を含むことができます。","アクションは外部の","アクションへ向けて","アクションをディスパッチします。option","アクションをディスパッチするか、グローバル名前空間にミューテーションをコミットするには、dispatch","アクションをディスパッチするコンポーネントの","アクションを構成する","アクションハンドラはストアインスタンスのメソッドやプロパティのセットと同じものを呼び出せるコンテキストオブジェクトを受け取ります。したがって","アプリケーションのための","アプリケーションの中心にあるものはストアです。\"ストア\"","アプリケーションの構造","アプリケーションレベルの状態はストアに集約されます。","アロー関数は、コードをとても簡潔にできます！","イベントでアクションを呼び出すことです:","インスタンスプロパティ","インスタンスメソッド","インストール","オブジェクトから取り出されます:","オブジェクトのプロパティとしても公開されます。","オブジェクトを使ってディスパッチする","オブジェクトを受け取ります。:","オブジェクトを返す関数を渡す場合、返されたオブジェクトはルートステートとして使用されます。これは特にモジュールの再利用のためにステートオブジェクトを再利用する場合に便利です。詳細","オブジェクトスタイルでコミットするとき、オブジェクト全体がペイロードとしてミューテーションハンドラに渡されます。したがってハンドラの例は上記と同じです:","オブジェクトスタイルのコミット","オブジェクトスプレット演算子で、外のオブジェクトとこのオブジェクトを混ぜる","オブジェクトスプレッド演算子","オプション(store.registermodule('a',","オプションが","オプションで指定されたストアは、全ての子コンポーネントに注入されます","オプションは、どちらかいうと","オプションを作成します。詳細","オプションを受け付けます。","オプションを受け入れます","オプションを指定することで","オプションを渡すことで、渡されたストアをルートの全ての子コンポーネントに注入します。これは","グローバルなスクリプトタグを利用する場合にはこのようにする必要はありません。","グローバルイベントバス","グローバルステート","グローバルステートとゲッターを使いたい場合、rootstat","ゲッター","ゲッターから結果を受け取る","ゲッターのテスト","ゲッターのテストの例:","ゲッターの第4引数経由で","ゲッターの評価後の値を返すコンポーネントの","ゲッターは","ゲッターは第1引数として、state","ゲッターは第2引数として他のゲッターを受け取ります:","ゲッターを、スプレッド演算子（object","ゲッターをモックする","ゲッターを異なる名前でマッピングさせたいときはオブジェクトを使います:","ゲッター関数は次の引数を受け取ります:","コアコンセプト","コミットをモックする","コンストラクタオプション","コンポーネント","コンポーネントがストアから状態を取り出すとき、もしストアの状態が変化したら、ストアはリアクティブかつ効率的に更新を行います。","コンポーネントが複数のストアのステートプロパティやゲッターを必要としているとき、これらすべてにおいて、算出プロパティを宣言することは繰り返しで冗長です。これに対処するため、算出ゲッター関数を生成し、いくつかのキーストロークを省くのに役立つ","コンポーネントに入れる","コンポーネントの外の状態をどうやってうまく扱うか考える絶好の機会です。vuex","コンポーネントはまだローカルステートを持つことできる","コンポーネントは自動的に更新されます。これは","コンポーネントをつくってみましょう","コンポーネントをバインドするヘルパー","コンポーネント内でのアクションのディスパッチ","コンポーネント内におけるミューテーションのコミット","コンポーネント内部の","サイレントコミット","サブモジュールを含む次のような形式のオブジェクトはストアにマージされます。","サーバサイドレンダリングされたアプリケーションから状態を保持するなど、新しいモジュールを登録するときに、以前の状態を保持したい場合があります。preservest","シンプルなアクションを登録してみましょう:","シンプルなストア","ステート","ステートのモック","ステートをモックする","ストア","ストアが作られた後に","ストアが初期化されたときに呼ばれます","ストアにある状態を","ストアにアクションを登録します。ハンドラ関数は次のプロパティを持つ","ストアにゲッターを登録します.","ストアにミューテーションを登録します。ハンドラ関数は第一引数に","ストアに追加できるようにすると、モジュールの予測できない名前空間が気になるかもしれません。あなたのモジュールは、プラグインユーザーが名前空間付きモジュールの元にモジュールを追加すると、その名前空間に属するようになります。この状況に適応するには、プラグインオプションを使用して名前空間の値を受け取る必要があります。","ストアのための","ストアのサブツリーを返すコンポーネントの","ストアのルートステートを置き換えます。これは、ステートのハイドレーションやタイムトラベルのためだけに利用すべきです。","ストアの作成は、とても簡単です。ストアオブジェクトの初期状態と、いくつかのミューテーションを準備するだけです。","ストアの状態は","ストアの状態を直接変更することはできません。明示的にミューテーションをコミットすることによってのみ、ストアの状態を変更します。これによって、全ての状態の変更について追跡可能な記録を残すことが保証され、ツールでのアプリケーションの動作の理解を助けます。","ストアはリアクティブです。vue","ストアへのミューテーションを購読します。handler","ストアを厳格モードにします。厳格モードでは、ミューテーションハンドラ以外で、","ストアアクションを購読します。handler","ストアオブジェクトの状態はリアクティブなので、ストアの状態をコンポーネント内で使うには算出プロパティ内でただ状態を返せば良いです。コンポーネントメソッドでミューテーションをコミットすることによって状態の変更を行います。","タグで直接読み込むことができ、createvuexlogg","チェックアウトのリクエストを送信し、楽観的にカート内をクリアする","テスト","テストの実行","ディスクリプタとミューテーション後の状態を受け取ります。","ディスパッチとコミットもこのモジュール用にローカライズされています","デフォルト:","デフォルトでは、アクション、ミューテーション、そしてゲッター内部のモジュールはグローバル名前空間の元で登録されます","デフォルトでは全てのコミットされたミューテーションはプラグイン（開発ツール等）に送られます。しかし場合によっては、プラグインに全ての状態の変化を記録して欲しくないこともあるでしょう。あるいは、短い間隔やポーリングでのストアへの複数のコミットも、常に追跡する必要はないでしょう。こうしたケースでは、store.commit","デフォルトは","データソースとストアを例にします","トップからボトムまでフラクタル構造です:","ドキュメント","ネストされた","ネストされたモジュール","ビュー、これは状態のただの宣言的なマッピングです。","ビルトインロガープラグイン","ファイルの中にミューテーションがあるなら、デフォルトエクスポートに加えて、名前付きエクスポートでミューテーションをエクスポートできます。","フォームの扱い","ブラウザで","ブラウザでの実行","プラグイン","プラグインが、モジュールをアプリケーションのストアに付属させることで、状態の管理に","プラグインで最も一般的に使用されます。detail","プラグインと同様に、ビルドツールに処理させることができます:","プラグインの中でもっともよく利用されます。詳細","プラグインは、単一の引数としてストアを受けつけるただの関数です:","プラグインは直接、状態を変更できません。これはコンポーネントに似ています。プラグインはコンポーネント同様に、ミューテーションのコミットによる変更のトリガーだけで状態を変更できます。","プラグインを使用することができます。","プラグインオプションで名前空間値を取得し、","プラグイン内でのミューテーションのコミット","プラグイン開発者向けの注意事項","プラグイン関数の配列は、ストアに適用されます。このプラグインは、ストアだけを引数として受け取り、外部への永続化、ロギング、デバッギングのために、ミューテーションを監視するか、または、","プラグイン関数を返す","プロパティを持つオブジェクトを使って、ミューテーションをコミットすることもできます:","プロポーサルの","ヘルパー","ヘルパーはストアのゲッターをローカルの算出プロパティにマッピングさせます:","ヘルパーを使うことができます:","ヘルパーを使うこともできます（ルートの","ヘルパーを使って名前空間付きモジュールをコンポーネントにバインディングするとき、少し冗長になります:","ヘルパーを呼び出すこと（ルートの","ベースの","ペイロードを使ってディスパッチする","ホットモジュールとしてアクションとモジュールを受け付けます","ホットリローディング","ホットリローディングを試したい場合は、counter","マップされた算出プロパティの名前がステートサブツリーの名前と同じ場合は、文字列配列を","ミューテーション","ミューテーション、アクション、ゲッター...","ミューテーションとモジュールのホットリローディングのために、store.hotupdate()","ミューテーションによる状態変更は、この時点で行われるべきです","ミューテーションのコミットによるストアとデータソースの同期をプラグインで実現できます。","ミューテーションのテスト","ミューテーションのハンドラは以下のようになります:","ミューテーションのルートファイル","ミューテーションの分割束縛","ミューテーションは","ミューテーションは、`{","ミューテーションは同期的でなければならない","ミューテーションは完全に引数に依存しているだけの関数であるため、テストするのがとても簡単です。効果的なやり方として、もし","ミューテーションやアクションが適切に書かれている場合は、適切にモック化された後、テストコードはブラウザの","ミューテーションをコミットします。option","ミューテーションをコミットするコンポーネントの","ミューテーションを記録する必要がある場合は、`true`","ミューテーションを適用する","ミューテーション・タイプに定数を使用する","メソッドで状態の変更を行うことができます。","メソッドを使って、モジュールを登録できます:","メソッドを利用する必要があります:","モジュール","モジュールで定義されたときの仕様","モジュールで定義された場合、モジュールのローカルステート","モジュールのアセット","モジュールのステートには","モジュールのミューテーションやゲッターの中では、渡される第1引数はモジュールのローカルステートです。","モジュールのローカルステート","モジュールの再利用","モジュールの状態を宣言するために単純なオブジェクトを使用すると、その状態オブジェクトは参照によって共有され、変更時にクロスストア/モジュールの状態汚染を引き起こします。(例:","モジュールをより自己完結型にまた再利用可能なものにしたい場合は、それを","モジュールを提供するプラグインを作成し、ユーザーがそれらを","モジュールを登録します","モジュールを集めてストアをエクスポートする","モジュールシステムで利用される場合、","モジュールシステムを使っているとき、ストアの状態を使っているすべてのコンポーネントでインポートが必要です。また、コンポーネントのテストのときにモック化が必要となります。","モジュールシステムを利用しているときはあらかじめ","モジュールステートはすでにネストされており、名前空間のオプションによって影響を受けません","モジュール内で定義されていればモジュールのローカルステート","モックによってモジュールを作成する","モック化したストアと引数でアクションを呼び出す","ユーザ向けは、vuex@3.0+","ライブラリです。","ライブラリは、動的に付属させたモジュール内部でアプリケーションのルーティングのステートを管理することで","ライブラリは眼鏡のようなものです:","リアクティブにゲッター関数の返す値を監視します。値が変わった場合は、コールバックを呼びます。ゲッターはストアの","リファレンス","リリースノート","リンクが提供されています。上記リンクは常に","ルートインスタンスに","ルートステート、読み取り専用です。","ルートステートオブジェクトです。詳細","ルートディスパッチ/コミットの","レスポンスのモック","ロガーファイルは、他にも","ロガープラグインは、状態のスナップショットを撮ることに注意しましょう。スナップショットを撮ることはコストがかかるため、開発中だけ利用してください。","ロギングの前に、状態を変換します","ログ出力されたミューテーションを自動で展開します","ローカルステートよりもかなり冗長で、v","一つ目は、プロパティ","一个","一个数组，包含应用在","一条重要的原则就是要记住","一样直截了当。","一样遵守一些注意事项：","一目了然：","一連の非同期の処理を実行しつつ、ミューテーションのコミットによってのみ副作用（状態の変更）を与えていることに注意してください。","上に公開されます。","上のように記述すれば、プラグインはデフォルトで利用されることになります。本番環境(","上使用","上克隆代码并自己构建。","上发布的最新版本。您也可以通过","上注册","上的插件方法。这些插件直接接收","上的用户输入导致的状态变化。","上記","上面插件会默认启用。在发布阶段，你需要使用","下一步：action","下面是","下面是一个测试异步","下面是用","不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。","不要在发布环境下启用严格模式！严格模式会深度监测状态树来检测不合规的状态变更——请确保在发布环境下关闭严格模式，以避免性能损失。","与根模块的选项一样，每个模块也包含","严格模式","中也可以：","中使用","中初始化好所有所需属性。","中多次注册同一个模块","中定义“getter”（可以认为是","中很有用的特性。另一个方法是使用带有","中执行。换种方式，你也可以用","中执行测试","中提交","中查找","中派生出一些状态，例如对列表进行过滤并计数：","中混合异步调用会导致你的程序很难调试。例如，当你调用了两个包含异步回调的","中的","中的异步函数中的回调让这不可能完成：因为当","中的状态。改变","中的状态。详细介绍","中的状态发生变化，那么相应的组件也会相应地得到高效更新。","中的状态是响应式的，在组件中调用","中的状态是响应式的，那么当我们变更状态时，监视状态的","中的状态的唯一方法是提交","中的状态的唯一途径就是显式地提交","中的状态简单到仅需要在计算属性中返回即可。触发变化也仅仅是在组件的","中绑定","中读取状态的时候，若","中附加新模块的方式来使用","中，`getters`","中，mutat","为","为了处理异步操作，让我们来看一看","为了能够使用","为了解决以上问题，vuex","为组件创建计算属性以返回","之后就可以通过","之后引入","之后调用","之后，让我们来创建一个","之类的工具发挥作用，同时把这些常量放在单独的文件中可以让你的代码合作者对整个","乍一眼看上去感觉多此一举，我们直接分发","也可以接受其他","也支持载荷：","也被局部化了","也集成到","也需要与使用","事件类型","事件类型在各种","事件，在事件回调中调用","产品模块","产生的副作用（即状态变更）。","什么情况下我应该使用","什么时候结束呢？更重要的是，我们如何才能组合多个","什么是“状态管理模式”？","仍旧返回","他のパターンと異なるのは、vuex","他们可以接受","以下のような","以下是一个表示“单向数据流”理念的极简示意：","以允许保留之前的","以对象形式分发","以新对象替换老对象。例如，利用","以载荷形式分发","以降でサポートされます):","任何由","任意の方法でそれをフォーマットできます","会作为第三和第四参数传入","会使状态变化更显式和易调试，但也会使代码变得冗长和不直观。如果有些状态严格属于单个组件，最好还是作为组件的局部状态。你应该根据你的应用开发需要进行权衡和确定。","会在每个","会收到局部化的","会暴露为","会更易读：","会比较棘手：","会试图直接修改","会进行自动安装：","传一个字符串数组。","传入额外的参数，即","传参。在你对","传字符串参数","但是，当我们的应用遇到多个组件共享状态时，单向数据流的简洁性很容易被破坏：","作为其第一个参数：","作为命名输出对象","作为唯一参数，可以监听","作为唯一参数：","作为第一个参数（如果定义在模块中，则为模块的局部状态），payload","作为第一个参数，payload","作为第一个参数，其","作为第一个参数：","作为第三参数传给","作为第二个参数。最后接收一个可选的对象参数表示","作为第二个参数（可选）。","作为第二个参数：","作出响应。","你不能直接改变","你不能直接调用一个","你也可以使用","你也可以通过让","你可以使用","你可以向","你可以在组件中使用","你在组件中使用","使","使用","使用单一状态树——是的，用一个对象就包含了全部的应用层级状态。至此它便作为一个“唯一数据源","使用对象展开运算符将","使用对象展开运算符将此对象混入到外部对象中","使用常量替代","例えば、特定のサブツリーのみを返します","例えば項目のリストをフィルタリングしたりカウントするときのように、ストアの状態を算出したいときがあります。","例如，只返回指定的子树","依赖","依赖的模块工厂","依赖，可以用","保存状态，用于下一次","保持不变：","假设","假设这里的","允许我们在","允许我们将","入門","全く新しいオブジェクトで既存のオブジェクトを置き換える。例えば、stage","全てのゲッター","公式の開発ツール拡張と連携し、設定なしでタイムトラベルデバッグやステートのスナップショットのエクスポートやインポートのような高度な機能を提供します。","关联到","内のセットアップ方法を参考にしてください。","内置","内部执行异步操作：","再次强调，我们通过提交","函数。在这种情况下，只有当所有触发函数完成后，返回的","函数中执行的,","函数引起的，将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。","函数接受一个与","函数有几个配置项：","函数返回的是一个对象。我们如何将它与局部计算属性混合使用呢？通常，我们需要使用一个工具函数将多个对象合并为一个，以使我们可以将最终对象传给","函数，因此","函数：","分割到单独的文件。","分割成模块（module）。每个模块拥有自己的","分发","分发的时候调用并接收","分支下的最新版本，您可以直接从","创建一个","创建之后，你可以使用","创建以下","创建基于命名空间的组件绑定辅助函数。其返回一个包含","创建基于某个命名空间辅助函数。它返回一个对象，对象里有新的绑定在给定命名空间值上的组件绑定辅助函数：","创建多个","创建模块","创建组件方法分发","创建组件方法提交","初始化后调用","加载新模块","動的なモジュールを登録します。詳細","動的なモジュールを解除します。詳細","動的なモジュール登録があることで、他の","動的にモジュールを登録する","包含了子模块的对象，会被合并到","包含很复杂的计算过程，很有必要测试它们。getter","包含的","单一状态树","单状态树和模块化并不冲突——在后面的章节里我们会讨论如何将状态和状态变更事件分布到各个子模块中。","単一ステートツリー","単一ステートツリーはモジュール性と競合しません。以降の章で、アプリケーションの状態とミューテーション(変更)をサブモジュールに分割する方法について説明します。","単一ステートツリーを使うため、アプリケーションの全ての状態は、一つの大きなストアオブジェクトに内包されます。しかしながら、アプリケーションが大きくなるにつれて、ストアオブジェクトは膨れ上がってきます。","単純な","即可","即可。","卸载一个动态模块。详细介绍","厳格モード","厳格モードで","厳格モードでは","厳格（strict）モードを有効にするには","参数解构","参考","参考として","参考热重载示例","及","双向绑定的计算属性","双方向算出プロパティ","发出结账请求，然后乐观地清空购物车","取个变量名然后把它输出去：","变化的时候,","变更状态","另外，通过定义和隔离状态管理中的各种概念并强制遵守一定的规则，我们的代码将会变得更结构化且易维护。","只会接收","只要你遵守以上规则，如何组织代码随你便。如果你的","可以包含","可以包含任意异步操作。","可以处理被触发的","可以帮助我们管理共享状态，但也附带了更多的概念和框架。这需要对短期和长期效益进行权衡。","可能是繁琐冗余的。确实是如此——如果您的应用够简单，您最好不要使用","各ミューテーションはタイプとハンドラを持ちます。ハンドラ関数は","各モジュールは、ルートオプションに似た","同じストアに同じモジュールを複数回登録する","同じモジュールを使用する複数のストアを作成する;","同样指向局部状态。","同样，对于模块内部的","同様に、モジュールのアクションの中では","名前付きエクスポートでミューテーションをエクスポートする","名前空間","名前空間によるバインディングヘルパー","名前空間のゲッターとアクションは、ローカライズされた","名前空間をプラグインモジュールの型に追加する","名前空間付きモジュールでのグローバルアセットへのアクセス","名前空間付けられたコンポーネントバインディングのヘルパーを作成します。返されるオブジェクトは指定された名前空間にバインドされた","后的状态作为参数：","启用了命名空间的","呼び出されるべきミューテーションが残っていないか確認する","呼び出しをサービスとして抽象化し、そしてテストの内部ではそのサービスをモックにすることができます。簡単に依存関係をモック化するために、webpack","呼び出しを抽象化する","命名空间","和","和分发多重","和单纯的全局对象有以下两点不同：","和参数调用","和模块，你需要使用","和经过","响应式地监测一个","回调函数","因为","因此，我们为什么不把组件的共享状态抽取出来，以一个全局单例模式管理呢？在这种模式下，我们的组件树构成了一个巨大的“视图”，不管在树的哪个位置，任何组件都能获取状态或者触发行为！","在","在一个","在一个模块化的打包系统中，您必须显式地通过","在不同模块中可以触发多个","在严格模式下，无论何时发生了状态变更且不是由","在单独构建的版本中辅助函数为","在另外一个","在命名空间模块内访问全局内容（global","在大多数情况下，载荷应该是一个对象，这样可以包含多个字段并且记录的","在开始记录之前转换状态","在插件中不允许直接修改状态——类似于组件，只能通过提交","在插件内提交","在注册一个新","在浏览器中执行测试","在浏览器中测试","在组件中分发","在组件中提交","在这一章，我们将会学到","在这个模块中，","在这个模块的","型:","处理之后这些测试应该不依赖任何浏览器","处理函数以外修改","处理器的","多个视图依赖于同一状态。","失敗時の処理","失败操作","如果你传入返回一个对象的函数，其返回的对象会被用作根","如果你希望使用全局","如果你开发的插件（plugin）提供了模块并允许用户将其添加到","如果你想将一个","如果你的","如果在模块中定义则为模块的局部状态","如果在模块化构建系统中，请确保在开头调用了","如果希望你的模块具有更高的封装度和复用性，你可以通过添加","如果您不打算开发大型单页应用，使用","如果我们使用一个纯对象来声明模块的状态，那么这个状态对象会通过引用被共享，导致状态对象被修改时","如果有多个组件需要用到此属性，我们要么复制这个函数，或者抽取到一个共享函数然后在多处导入它——无论哪种方式都不是很理想。","如果正在使用","如果需要使用","安装","完全ビルドでは、ヘルパーは","完成","完成后调用，接收","定数を使用するかどうかは好みの問題です。多くの開発者による大規模なプロジェクトで役に立ちますが、完全にオプションなので、もしお気に召さなければ使用しなくても構いません。","定数を関数名として使用できる","实例。单一状态树让我们能够直接地定位任一特定的状态片段，在调试的过程中也能轻易地取得整个当前应用状态的快照。","实例中读取状态最简单的方法就是在计算属性中返回某个状态：","实例会注入到根组件下的所有子组件中，且子组件能通过","实例具有相同方法和属性的","实例属性","实例方法","实例本身了。","实例的根","实现中是很常见的模式。这样可以使","实现，默认为","实践中，我们会经常用到","实际上这和","実装において、ミューテーション・タイプに定数を使用することが共通して見られるパターンです。これはコードに対してリントツールのようなツールを利用できるという利点があり、また単一ファイルに全ての定数を設定することによって、共同で作業する人に、アプリケーション全体で何のミューテーションが可能であるかを一目見ただけで理解できるようにします:","実際に","実際にはコードを少しシンプルにするために","对于","对于大型应用，我们会希望把","对于模块内部的","对于这种情况，你可以将模块的空间名称字符串作为第一个参数传递给上述函数，这样所有绑定都会自动将该模块作为上下文。于是上面的例子可以简化为：","对于问题一，传参的方法对于多层嵌套的组件将会非常繁琐，并且对于兄弟组件间的状态传递无能为力。对于问题二，我们经常会采用父子组件直接引用或者通过事件来变更和同步状态的多份拷贝。以上的这些模式非常脆弱，通常会导致无法维护的代码。","对象","对象。详细介绍","对象中","对象中。","对象为什么不是","对象包含以下属性：","对象和一些","对象就有可能变得相当臃肿。","对象展开运算符","对象提供给","对象是模块的局部状态","对象的属性传入","对象风格的提交方式","对象，因此你可以调用","对象，尤其是对于重用","对象：","导致的状态变更都应该在此刻完成。","将","将会成为自然而然的选择。引用","就不受约束！我们可以在","就足够您所需了。但是，如果您需要构建是一个中大型单页应用，您很可能会考虑如何更好地在组件外部管理状态，vuex","局部状态”要啰嗦得多，并且也损失了一些","属性。但是自从有了对象展开运算符（现处于","属性不会对其产生影响","属性以访问根","属性另取一个名字，使用对象形式：","属性后不需要修改模块内的代码。","属性的对象：","岂不更方便？实际上并非如此，还记得","嵌套模块","带命名空间的绑定函数","并不意味着你需要将所有的状态放入","并不限制你的代码结构。但是，它规定了一些需要遵守的规则：","并且观察","应对起来略微棘手，因为它们可能需要调用外部的","应用","应用层级的状态应该集中到单个","应用的核心就是","应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态，并以相应的规则保证状态以一种可预测的方式发生变化。vuex","开发环境与发布环境","开启严格模式，仅需在创建","开始","异步逻辑都应该封装到","引用","当","当一个组件需要获取多个状态时候，将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题，我们可以使用","当使用","当使用全局","当使用对象风格的提交方式，整个对象都作为载荷传给","当在严格模式中使用","当定义在一个模块里时会特别一些：","当映射的计算属性的名称与","当需要在对象上添加新属性时，你应该","很多次的时候）：","很容易被测试，因为它们仅仅是一些完全依赖参数的函数。这里有一个小技巧，如果你在","必须同步执行这个限制么？action","必须承认，这样做比简单地使用“v","必须是同步函数","必须是同步函数。为什么？请参考下面的例子：","快照","成为可热重载模块","成功操作","成功時の処理","我们主要想针对","我们可以使用","我们可以很容易地在任何组件中使用它：","我们可以按任意方式格式化","我们组装模块并导出","或","或提交","或模块间数据互相污染的问题。","或者","或者是","所有","才会执行。","打包测试文件。","打包这些测试文件然后在","执行测试","把","把上述","把当前购物车的物品备份起来","把空间名字添加到插件模块的类型（type）中去","抽取出api请求","按照","接下来，我们将会更深入地探讨一些核心概念。让我们先从","接受","接受一个成功回调和一个失败回调","接收","描述和当前的","提交","提交一个","提交的是","提交载荷（payload）","提供了基于","提案","提示：我们将在后续的文档示例代码中使用","插件","插件。","插件会生成状态快照，所以仅在开发环境使用。","插件函数","插件可以通过在","插件就是一个函数，它接收","插件就是通过动态注册模块将","支持同样的载荷方式和对象方式进行分发：","支持在开发过程中热重载","支持）：","改成","数据源到","文件中定义了","文件太大，只需将","文字列を渡すことは、`state","文档","断言结果","新しいアクションとミューテーションにスワップ","新しいアクションとミューテーションをホットスワップします。詳細","新しいプロパティをオブジェクトに追加するとき、以下のいずれかが必要です:","新增","方法可以有更多选项来完成复杂任务）：","方法接受以下参数：","方法注册模块：","方法的参数。","方法的返回值，当值改变时调用回调函数。getter","方法触发状态变更：","方法触发：","方法：","既然","日志。每一条","日志插件还可以直接通过","时声明的模块）。","时，不需要以上安装过程。","时，为了在服务端渲染中避免有状态的单例)","时，你就知道","时，你很有可能想保留过去的","时，在属于","时，调用此函数。”要唤醒一个","映射","映射为","映射到局部计算属性：","映射到视图；","是一个专为","是专门为","是个","是什么？","是同样的问题。因此解决办法也是相同的——使用一个函数来声明模块状态（仅","是在计算属性中返回的一个属于","是更改状态的唯一方法，并且这个过程是同步的。","是注册在全局命名空间的——这样使得多个模块能够对同一","時々、状態の\"スナップショット\"を撮って、ミューテーション前後の状態を比較したくなることがあるでしょう。それを実現するために、状態オブジェクトのディープコピーを行う必要があります:","時どき、モジュールの複数インスタンスを作成する必要があるかもしれません。例えば:","暴露为","暴露出来，根节点状态则为","暴露出注册的","更改","更新されたモジュールをインポートする","更新记录","替换","最后，如果我们利用","最好提前在你的","最新の開発版ビルドを利用したい場合には、","最简单的","最終的に","有时候我们需要从","有时候插件需要获得状态的“快照”，比较改变的前后状态。想要实现这项功能，你需要对状态对象进行深拷贝：","有时我们可能需要创建一个模块的多个实例，例如：","服务回应","服务层——例如，我们可以把","期待されるミューテーションをアクションが呼び出すかをテストするためのヘルパー","本番環境","本番環境で厳格モードを有効にしてデプロイしてはいけません！厳格モードでは不適切なミューテーションを検出するためにステートツリーに対して深い監視を実行します。パフォーマンスコストを回避するために本番環境では無効にしてください。","来动态卸载模块。注意，你不能使用此方法卸载静态模块（即创建","来安装","来改变状态，你怎么知道什么时候回调和哪个先回调呢？这就是为什么我们要区分这两个概念。在","来看一个更加实际的购物车示例，涉及到调用异步","来简化代码（特别是我们需要调用","来自不同视图的行为需要变更同一状态。","来获取","来获取状态对象，以及通过","来触发变化。","来记录","来说是必要的。","来说非常有用。详细介绍","构造器选项","架构就像眼镜：您自会知道什么时候需要它。","某些观察者）","标签引入，它会提供全局方法","标签引用","核心概念","根状态，只读。","根级别的","格式记录","检查是否没有","概念开始。","構文を使用する","模块内容（modul","模块内的状态已经是嵌套的了，使用","模块功能默认输出了","模块动态注册","模块动态注册功能使得其他","模块的局部状态","模块重用","模拟","模拟提交","模拟状态","次のミューテーションのために状態を保存","每一个","每当","每次","比较","注册一个动态模块。详细介绍","注册嵌套模块","注册模块","注册的","注册监听","注意:","注意我们正在进行一系列的异步操作，并且通过提交","注意：对于","测试","测试一个","深入理解所有的概念对于使用","混入","热替换新的","热重载","然后像这样使用：","然后返回","然后：","然而，这种模式导致组件依赖全局状态单例。在模块化的构建系统中，在每个需要使用","状态","状態、これは私達のアプリを動かす信頼できる情報源(the","状態のスナップショットを撮る","状態のスナップショットを撮るプラグインはアプリケーションの開発の間だけ使われるべきです。","状態を変更する","状態を変更する唯一の方法は、同期的に処理を行うミューテーションをコミットすることのみです。","状態変更を非同期に組み合わせることは、プログラムの動きを予測することを非常に困難にします。例えば、状態を変更する非同期コールバックを持った","状態管理パターン","现在你可以：","现在想象，我们正在","现在，你可以通过","現在のカート内の商品を保存する","現在のモジュールのモジュールのローカルゲッター","生成","生成状态快照的插件应该只在开发阶段使用，使用","用“vuex","用不用常量取决于你——在需要多人协作的大型项目中，这会很有帮助。但如果你不喜欢，你完全可以不这样做。","用以上配置启动","用户来说","用指定的","用模拟的","由于","由于使用单一状态树，应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时，store","異なるビューからのアクションで、同じ状態を変更する必要があります。","登録されたゲッターは","登録されているゲッターを公開します。読み取り専用です。","的","的作者","的例子（实际上你可以用任何你喜欢的测试框架）：","的例子：","的双向绑定计算属性：","的另一种方式是直接使用包含","的响应规则","的地方","的处理函数返回的","的子节点名称相同时，我们也可以给","的官方调试工具","的实例注入所有的子组件","的实例，那么你仍然可以给","的实现：","的对象。它们都已经绑定在了给定的命名空间上。详细介绍","的对象展开运算符我们可以这样写：","的对象，在用户输入时，v","的局部状态作为第一个参数，而不是根状态，并且模块","的思维”去解决这个问题的方法是：给","的方式使其成为命名空间模块。当模块被注册后，它的所有","的方式，而非直接改变","的时候传入","的时候，我们需要增加一个","的根状态。模块的","的根状态，仅用状态合并或时光旅行调试。","的格式为","的模块编译格式问题，这里需要加上","的测试与","的状态","的状态存储是响应式的。当","的状态存储是响应式的，从","的示例：","的第四个参数来调用","的组件中需要频繁地导入，并且在测试组件时需要模拟状态。","的细粒度数据响应机制来进行高效的状态更新。","的结果","的计算属性）。就像计算属性一样，getter","的话说就是：","的辅助函数","的返回值。详细介绍","的返回值会根据它的依赖被缓存起来，且只有当它的依赖值发生了改变才会被重新计算。","的这些核心概念。他们是：","的钩子。vuex","監視を止める場合は、ハンドラ関数の返り値を関数として呼び出します。","直接ダウンロードする","直接ミューテーションハンドラを呼び出すことはできません。この","直接下载","相关代码分割到模块中。下面是项目结构示例：","確かに、上記の例は単純な","私たちが","私たちは、このドキュメントのコード例に","第1引数は、オプションで名前空間文字列にすることができます。詳細","第一个参数是可选的，可以是一个命名空间字符串。详细介绍","等同于","等待","等等...","算出プロパティ","管理状态。例如，vuex","箭头函数可使代码更简练","类似于","类似于插件，我们可以让构建工具来处理这种情况：","类型:","結果を検証する","组件","组件中展示状态呢？由于","组件中获得","组件也会自动更新。这也意味着","组件仍然保有局部状态","组件从","组件内的","组件绑定的辅助函数","组合","结合在一起，实现应用的路由状态管理。","给插件开发者的注意事项","继承父模块的命名空间","编写正确，经过合理地","而且，你可以通过使用","背后的基本思想，借鉴了","自动展开记录的","自定义","自己构建","自带一个日志插件用于一般的调试:","若","若需要在全局命名空间内分发","获取","获取局部状态，必须使用常规函数","获取更新后的模块","虽然","表单处理","被","被局部化了","被记录，devtool","複数のビューが同じ状態に依存することがあります。","要停止监测，直接调用返回的处理函数。","要注意，logger","親モジュールから名前空間を継承する","解构","触发的时候，回调函数还没有被调用，devtool","設定から","設定を使用して","詳細","计数应用开始：","订阅","让我们从一个简单的","让我们开始吧。","让我们来注册一个简单的","记数应用示例。","设计的状态管理库，以利用","访问","访问到。让我们更新下","访问模块的状态。","该功能常用于插件。详细介绍","详细介绍","详见","语法。如果你还没能掌握","语法处理内联","请参考购物车示例。","调用","调用。为了便于解决","调用抽象成服务，然后在测试文件中用","调用（需要先在根节点注入","调用（需要在根节点注入","调试、状态快照导入导出等高级调试功能。","购物","购物车模块","载荷（payload）：","辅助函数","辅助函数仅仅是将","辅助函数将组件中的","辅助函数将组件的","辅助函数帮助我们生成计算属性，让你少按几次键：","返回一个允许我们注入","返回一个函数，来实现给","返回的是","这两个参数：","这个状态自管理应用包含以下几个部分：","这些函数来绑定命名空间模块时，写起来可能比较繁琐：","这就是","这是一个最基本的","这样的方式指定特定的版本。","这里会抛出一个错误。","这里的","进一步嵌套命名空间","进入严格模式，在严格模式下，任何","进行单元测试。","追加の引数を渡してコミットする","选项。模块的状态使用","选项将其归档：store.registermodule('a',","选项是","选项，提供了一种机制将状态从根组件“注入”到每一个子组件中（需调用","选项，该","选项，这个选项暴露出每次","选项，这可以把","通常、最終的にひとつのオブジェクトを","通常是异步的，那么如何知道","通常用于插件。详细介绍","通过","通过在根实例中注册","通过提交","通过插件的参数对象得到空间名称","那么我们如何在","都会抛出错误。","都会自动根据模块注册的路径调整命名。例如：","都会重新求取计算属性，并且触发更新相关联的","都是同步事务：","都有一个字符串的","都需要捕捉到前一状态和后一状态的快照。然而，在上面的例子中","配置中的","配置（配置好","里可以有","里的数组进行查询时非常有用。","里面。","链接。以上的链接会一直指向","開発版ビルド","開発環境","関数がグローバルに公開されます。","関数は、追加でいくつかのオプションを受け取れます):","関数はいくつかのオプションを受け取ります:","関数を返り値にすることで、ゲッターに引数を渡すこともできます。これは特にストアの中の配列を検索する時に役立ちます：","阶段），我们可以极大地简化写法：","需要被记录，就让它返回","需遵守","非同期なアクションのテストの例:","非同期的なロジックはカプセル化されるべきであり、それはアクションによって構成されます。","非同期的な命令を扱うためにアクションを見てみましょう。","非常类似于事件：每个","项目结构","顺便，`mutation`","风格的计算属性命名功能来使用一个常量作为函数名","首先，你需要明白","默认值:","默认情况下，模块内部的","（用于内部数据，例如"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"Vuex\n\n注意: TypeScript ユーザ向けは、vuex@3.0+ と vue@2.5+ が必須、逆もまた同様です。\n\n\nリリースノート\nインストール\nVuex とは何か?\nVuex 入門\nコアコンセプト\nステート\nゲッター\nミューテーション\nアクション\nモジュール\n\n\nアプリケーションの構造\nプラグイン\n厳格モード\nフォームの扱い\nテスト\nホットリローディング\nAPI リファレンス\n\n"},"installation.html":{"url":"installation.html","title":"インストール","keywords":"","body":"インストール\n直接ダウンロードする / CDN\nhttps://unpkg.com/vuex\n\nUnpkg.com で NPM ベースの CDN リンクが提供されています。上記リンクは常に NPM の最新のリリースを指します。https://unpkg.com/vuex@2.0.0 のような URL によって特定のバージョン/タグを利用することもできます。\n\nVue のあとで vuex を取り込むと自動的に Vuex が導入されます:\n\n\n\nNPM\nnpm install vuex --save\n\nYarn\nyarn add vuex\n\nモジュールシステムで利用される場合、 Vue.use() によって Vuex を明示的に導入する必要があります:\nimport Vue from 'vue'\nimport Vuex from 'vuex'\n\nVue.use(Vuex)\n\nグローバルなスクリプトタグを利用する場合にはこのようにする必要はありません。\n開発版ビルド\n最新の開発版ビルドを利用したい場合には、 Github から直接クローンし vuex を自身でビルドする必要があります。\ngit clone https://github.com/vuejs/vuex.git node_modules/vuex\ncd node_modules/vuex\nnpm install\nnpm run build\n\n"},"intro.html":{"url":"intro.html","title":"Vuex とは何か?","keywords":"","body":"Vuex とは何か？\nVuex は Vue.js アプリケーションのための 状態管理パターン + ライブラリです。\nこれは予測可能な方法によってのみ状態の変異を行うというルールを保証し、アプリケーション内の全てのコンポーネントのための集中型のストアとして機能します。\nまた Vue 公式の開発ツール拡張と連携し、設定なしでタイムトラベルデバッグやステートのスナップショットのエクスポートやインポートのような高度な機能を提供します。\n\"状態管理パターン\"とはなんですか？\n単純な Vue で作られたカウンターアプリをみてみましょう:\nnew Vue({\n  // state\n  data () {\n    return {\n      count: 0\n    }\n  },\n  // view\n  template: `\n    {{ count }}\n  `,\n  // actions\n  methods: {\n    increment () {\n      this.count++\n    }\n  }\n})\n\nこれはいくつかの要素をアプリ自身に含んでいます:\n\n状態、これは私達のアプリを動かす信頼できる情報源(the source of truth)です。\nビュー、これは状態のただの宣言的なマッピングです。\nアクション、これはビューからのユーザー入力に反応して、状態の変更を可能にする方法です。\n\nこれらは\"単方向データフロー\"のコンセプトの極めてシンプルな責務です:\n\n  \n\n\nしかし、単純さは、共通の状態を共有する複数のコンポーネントを持ったときに、すぐに破綻します:\n\n複数のビューが同じ状態に依存することがあります。\n異なるビューからのアクションで、同じ状態を変更する必要があります。\n\n一つ目は、プロパティ (props) として深く入れ子になったコンポーネントに渡すのは面倒で、兄弟コンポーネントでは単純に機能しません。二つ目は、親子のインスタンスを直接参照したり、イベントを介して複数の状態のコピーを変更、同期することを試みるソリューションに頼っていることがよくあります。これらのパターンは、いずれも脆く、すぐにメンテナンスが困難なコードに繋がります。\nでは、コンポーネントから共有している状態を抽出し、それをグローバルシングルトンで管理するのはどうでしょうか？ これにより、コンポーネントツリーは大きな \"ビュー\" となり、どのコンポーネントもツリー内のどこにあっても状態にアクセスしたり、アクションをトリガーできます!\nさらに、状態管理に関わる概念を定義、分離し、特定のルールを敷くことで、コードの構造と保守性を向上させることができます。\nこれが Vuex の背景にある基本的なアイディアであり、Flux、 Redux そして The Elm Architectureから影響を受けています。\n他のパターンと異なるのは、Vuex は効率的な更新のために、Vue.js の粒度の細かいリアクティビティシステムを利用するよう特別に調整して実装されたライブラリだということです。\n\nいつ、Vuexを使うべきでしょうか？\nVuex は、共有状態の管理に役立ちますが、さらに概念やボイラープレートのコストがかかります。これは、短期的生産性と長期的生産性のトレードオフです。\nもし、あなたが大規模な SPA を構築することなく、Vuex を導入した場合、冗長で恐ろしいと感じるかもしれません。そう感じることは全く普通です。あなたのアプリがシンプルであれば、Vuex なしで問題ないでしょう。単純な グローバルイベントバス が必要なだけかもしれません。しかし、中規模から大規模の SPA を構築する場合は、Vue コンポーネントの外の状態をどうやってうまく扱うか考える絶好の機会です。Vuex は自然な次のステップとなるでしょう。これは Redux の作者、Dan Abramov からの良い引用です:\n\nFlux ライブラリは眼鏡のようなものです: それらが必要になったときに知るのです。\n\n"},"getting-started.html":{"url":"getting-started.html","title":"Vuex 入門","keywords":"","body":"Vuex 入門\nVuex アプリケーションの中心にあるものはストアです。\"ストア\" は、基本的にアプリケーションの状態（state）を保持するコンテナです。単純なグローバルオブジェクトとの違いが 2つあります。\n\nVuex ストアはリアクティブです。Vue コンポーネントがストアから状態を取り出すとき、もしストアの状態が変化したら、ストアはリアクティブかつ効率的に更新を行います。\n\nストアの状態を直接変更することはできません。明示的にミューテーションをコミットすることによってのみ、ストアの状態を変更します。これによって、全ての状態の変更について追跡可能な記録を残すことが保証され、ツールでのアプリケーションの動作の理解を助けます。\n\n\nシンプルなストア\n\n注意: 私たちは、このドキュメントのコード例に ES2015 のシンタックスを利用しています。 もし触れたことがなければ、ぜひ触れてください！\n\nVuex をインストール してから、ストアをつくってみましょう。Vuex ストアの作成は、とても簡単です。ストアオブジェクトの初期状態と、いくつかのミューテーションを準備するだけです。\n// モジュールシステムを利用しているときはあらかじめ Vue.use(Vuex) を呼び出していることを確認しておいてください\n\nconst store = new Vuex.Store({\n  state: {\n    count: 0\n  },\n  mutations: {\n    increment (state) {\n      state.count++\n    }\n  }\n})\n\nこれで store.state でストアオブジェクトの状態を参照でき、また store.commit メソッドで状態の変更を行うことができます。\nstore.commit('increment')\n\nconsole.log(store.state.count) // -> 1\n\nそして store.state.count を直接変更する代わりにミューテーションをコミットする理由は、状態の変更を明確に追跡したいからです。このシンプルな規約は、あなたのコードの意図をさらに明確にし、コードを読んだ時にアプリケーションの状態の変更について、論理的に考えることができるようにします。加えて、私たちに全ての変更のログを取ったり、状態のスナップショットを取ったり、タイムトラベルデバッグを行うようなツールを実装する余地を与えてくれます。\nストアオブジェクトの状態はリアクティブなので、ストアの状態をコンポーネント内で使うには算出プロパティ内でただ状態を返せば良いです。コンポーネントメソッドでミューテーションをコミットすることによって状態の変更を行います。\nこちらが Vuex を使った最も基本的なカウンターアプリの例です。\nこれから Vuex のコアコンセプトについて詳しく説明していきます。まずは状態（state）からはじめましょう。\n"},"core-concepts.html":{"url":"core-concepts.html","title":"コアコンセプト","keywords":"","body":"コアコンセプト\nこの章では、Vuex のコアコンセプトについて、以下を学習します。\n\nステート\nゲッター\nミューテーション\nアクション\nモジュール\n\nこれらのコンセプトを深く理解することは、Vuex を使用するにあたって不可欠です。\nそれでは、始めましょう！\n"},"state.html":{"url":"state.html","title":"ステート","keywords":"","body":"ステート\n単一ステートツリー\nVuex は単一ステートツリー (single state tree)を使います。つまり、この単一なオブジェクトはアプリケーションレベルの状態が全て含まれており、\"信頼できる唯一の情報源 (single source of truth)\" として機能します。これは、通常、アプリケーションごとに1つしかストアは持たないことを意味します。単一ステートツリーは状態の特定の部分を見つけること、デバッグのために現在のアプリケーションの状態のスナップショットを撮ることを容易にします。\n単一ステートツリーはモジュール性と競合しません。以降の章で、アプリケーションの状態とミューテーション(変更)をサブモジュールに分割する方法について説明します。\nVuex の状態を Vue コンポーネントに入れる\nストアにある状態を Vue コンポーネント に表示するにはどうすればよいのでしょう？　Vuex ストア はリアクティブなので、ストアから状態を\"取り出す\"一番シンプルな方法は、単純にいくつかのストアの状態を 算出プロパティ で返すことです。\n// Counter コンポーネントをつくってみましょう\nconst Counter = {\n  template: `{{ count }}`,\n  computed: {\n    count () {\n      return store.state.count\n    }\n  }\n}\n\nstore.state.count が変わるたび、算出プロパティの再評価が発生し、関連した DOM の更新をトリガーします。\nしかし、このパターンでは、コンポーネントがグローバルストアシングルトンに依存してしまいます。 モジュールシステムを使っているとき、ストアの状態を使っているすべてのコンポーネントでインポートが必要です。また、コンポーネントのテストのときにモック化が必要となります。\nVuex は、ルートコンポーネントに store オプションを指定することで (これは、 Vue.use(Vuex) で有効にできます)、すべての子コンポーネントにストアを \"注入\" する機構を提供しています:\nconst app = new Vue({\n  el: '#app',\n  // \"store\" オプションで指定されたストアは、全ての子コンポーネントに注入されます\n  store,\n  components: { Counter },\n  template: `\n    \n      \n    \n  `\n})\n\nルートインスタンスに store オプションを渡すことで、渡されたストアをルートの全ての子コンポーネントに注入します。これは this.$store で各コンポーネントから参照することができます。 Counter の実装を変更しましょう:\nconst Counter = {\n  template: `{{ count }}`,\n  computed: {\n    count () {\n      return this.$store.state.count\n    }\n  }\n}\n\nmapState  ヘルパー\nコンポーネントが複数のストアのステートプロパティやゲッターを必要としているとき、これらすべてにおいて、算出プロパティを宣言することは繰り返しで冗長です。これに対処するため、算出ゲッター関数を生成し、いくつかのキーストロークを省くのに役立つ mapState ヘルパーを使うことができます:\n// 完全ビルドでは、ヘルパーは Vuex.mapState として公開されています\nimport { mapState } from 'vuex'\n\nexport default {\n  // ...\n  computed: mapState({\n    // アロー関数は、コードをとても簡潔にできます！\n    count: state => state.count,\n    // 文字列を渡すことは、`state => state.count` と同じです\n    countAlias: 'count',\n    // `this` からローカルステートを参照するときは、通常の関数を使わなければいけません\n    countPlusLocalState (state) {\n      return state.count + this.localCount\n    }\n  })\n}\n\nマップされた算出プロパティの名前がステートサブツリーの名前と同じ場合は、文字列配列を mapState に渡すこともできます。\ncomputed: mapState([\n  // map this.count to store.state.count\n  'count'\n])\n\nオブジェクトスプレッド演算子\nmapState はオブジェクトを返すことに注意しましょう。どうやって、他のローカル算出プロパティと組み合わせるのでしょうか？ 通常、最終的にひとつのオブジェクトを computed に渡せるように、複数のオブジェクトをひとつにマージするユーティリティを使わなければいけません。しかし、オブジェクトスプレッド演算子 (ECMAScript プロポーサルの state-3 です) で、シンタックスをかなり単純にできます:\ncomputed: {\n  localComputed () { /* ... */ },\n  // オブジェクトスプレット演算子で、外のオブジェクトとこのオブジェクトを混ぜる\n  ...mapState({\n    // ...\n  })\n}\n\nコンポーネントはまだローカルステートを持つことできる\nVuex を使うということは、全ての状態を Vuex の中に置くべき、というわけではありません。多くの状態を Vuex に置くことで、状態の変更がさらに明示的、デバッグ可能になりますが、ときにはコードを冗長でまわりくどいものにします。状態の一部がひとつのコンポーネントだけに属している場合は、それをローカルの状態として残しておくとよいでしょう。あなたは、トレードオフを考慮した上で、あなたのアプリの開発ニーズに合った決定をすべきです。\n"},"getters.html":{"url":"getters.html","title":"ゲッター","keywords":"","body":"ゲッター\n例えば項目のリストをフィルタリングしたりカウントするときのように、ストアの状態を算出したいときがあります。\ncomputed: {\n  doneTodosCount () {\n    return this.$store.state.todos.filter(todo => todo.done).length\n  }\n}\n\nもしこの関数を複数のコンポーネントで利用したくなったら、関数をコピーするか、あるいは関数を共用のヘルパーに切り出して複数の場所でインポートする必要があります。しかし、どちらも理想的とはいえません。\nVuex を利用するとストア内に \"ゲッター\" を定義することができます。それらをストアの算出プロパティと考えることができます。算出プロパティと同様に、ゲッターの結果はその依存関係に基づいて計算され、依存関係の一部が変更されたときにのみ再評価されます。\nゲッターは第1引数として、state を受け取ります:\nconst store = new Vuex.Store({\n  state: {\n    todos: [\n      { id: 1, text: '...', done: true },\n      { id: 2, text: '...', done: false }\n    ]\n  },\n  getters: {\n    doneTodos: state => {\n      return state.todos.filter(todo => todo.done)\n    }\n  }\n})\n\nゲッターは store.getters オブジェクトから取り出されます:\nstore.getters.doneTodos // -> [{ id: 1, text: '...', done: true }]\n\nゲッターは第2引数として他のゲッターを受け取ります:\ngetters: {\n  // ...\n  doneTodosCount: (state, getters) => {\n    return getters.doneTodos.length\n  }\n}\n\nstore.getters.doneTodosCount // -> 1\n\nどのコンポーネントの内部でも簡単にゲッターを利用することができます:\ncomputed: {\n  doneTodosCount () {\n    return this.$store.getters.doneTodosCount\n  }\n}\n\n関数を返り値にすることで、ゲッターに引数を渡すこともできます。これは特にストアの中の配列を検索する時に役立ちます：\ngetters: {\n  // ...\n  getTodoById: (state) => (id) => {\n    return state.todos.find(todo => todo.id === id)\n  }\n}\n\nstore.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }\n\nmapGetters ヘルパー\nmapGetters ヘルパーはストアのゲッターをローカルの算出プロパティにマッピングさせます:\nimport { mapGetters } from 'vuex'\n\nexport default {\n  // ...\n  computed: {\n    // ゲッターを、スプレッド演算子（object spread operator）を使って computed に組み込む\n    ...mapGetters([\n      'doneTodosCount',\n      'anotherGetter',\n      // ...\n    ])\n  }\n}\n\nゲッターを異なる名前でマッピングさせたいときはオブジェクトを使います:\n...mapGetters({\n  // `this.doneCount` を `store.getters.doneTodosCount` にマッピングさせる\n  doneCount: 'doneTodosCount'\n})\n\n"},"mutations.html":{"url":"mutations.html","title":"ミューテーション","keywords":"","body":"ミューテーション\n実際に Vuex のストアの状態を変更できる唯一の方法は、ミューテーションをコミットすることです。Vuex のミューテーションはイベントにとても近い概念です: 各ミューテーションはタイプとハンドラを持ちます。ハンドラ関数は Vuex の状態（state）を第1引数として取得し、実際に状態の変更を行います:\nconst store = new Vuex.Store({\n  state: {\n    count: 1\n  },\n  mutations: {\n    increment (state) {\n      // 状態を変更する\n      state.count++\n    }\n  }\n})\n\n直接ミューテーションハンドラを呼び出すことはできません。この mutations オプションは、どちらかいうと \"タイプが increment のミューテーションがトリガーされたときに、このハンドラが呼ばれる\" といったイベント登録のようなものです。ミューテーションハンドラを起動するためにはミューテーションのタイプを指定して store.commit を呼び出す必要があります:\nstore.commit('increment')\n\n追加の引数を渡してコミットする\nstore.commit に追加の引数を渡すこともできます。この追加の引数は、特定のミューテーションに対するペイロードと呼びます:\n// ...\nmutations: {\n  increment (state, n) {\n    state.count += n\n  }\n}\n\nstore.commit('increment', 10)\n\nほとんどの場合、ペイロードはオブジェクトにすべきです。そうすることで複数のフィールドを含められるようになり、またミューテーションがより記述的に記録されるようになります:\n// ...\nmutations: {\n  increment (state, payload) {\n    state.count += payload.amount\n  }\n}\n\nstore.commit('increment', {\n  amount: 10\n})\n\nオブジェクトスタイルのコミット\nまた type プロパティを持つオブジェクトを使って、ミューテーションをコミットすることもできます:\nstore.commit({\n  type: 'increment',\n  amount: 10\n})\n\nオブジェクトスタイルでコミットするとき、オブジェクト全体がペイロードとしてミューテーションハンドラに渡されます。したがってハンドラの例は上記と同じです:\nmutations: {\n  increment (state, payload) {\n    state.count += payload.amount\n  }\n}\n\nサイレントコミット\n\n注意: この機能は開発ツール内にミューテーション・フィルタが実装された後に非推奨になる予定です。\n\nデフォルトでは全てのコミットされたミューテーションはプラグイン（開発ツール等）に送られます。しかし場合によっては、プラグインに全ての状態の変化を記録して欲しくないこともあるでしょう。あるいは、短い間隔やポーリングでのストアへの複数のコミットも、常に追跡する必要はないでしょう。こうしたケースでは、store.commit に第3引数を渡すことで、特定のミューテーションをプラグインに気付かせないようにすること（\"silence\"）ができます:\nstore.commit('increment', {\n  amount: 1\n}, { silent: true })\n\n// オブジェクトスタイルのコミット\nstore.commit({\n  type: 'increment',\n  amount: 1\n}, { silent: true })\n\nVue のリアクティブなルールに則ったミューテーション\nVuex ストアの状態は Vue によってリアクティブになっているので、状態を変更すると、状態を監視している Vue コンポーネントは自動的に更新されます。これは Vuex のミューテーションは、通常の Vue と動作させているときと同じく、リアクティブな値に関する注意が必要であることを意味します:\n\nあらかじめ全ての必要なフィールドによって、ストアの初期状態を初期化することが望ましいです\n\n新しいプロパティをオブジェクトに追加するとき、以下のいずれかが必要です:\n\nVue.set(obj, 'newProp', 123) を使用する。あるいは\n\n全く新しいオブジェクトで既存のオブジェクトを置き換える。例えば、stage-3 のスプレッドシンタックス（object spread syntax） を使用して、次のように書くことができます:\nstate.obj = { ...state.obj, newProp: 123 }\n\n\n\n\n\nミューテーション・タイプに定数を使用する\nいろいろな Flux 実装において、ミューテーション・タイプに定数を使用することが共通して見られるパターンです。これはコードに対してリントツールのようなツールを利用できるという利点があり、また単一ファイルに全ての定数を設定することによって、共同で作業する人に、アプリケーション全体で何のミューテーションが可能であるかを一目見ただけで理解できるようにします:\n// mutation-types.js\nexport const SOME_MUTATION = 'SOME_MUTATION'\n\n// store.js\nimport Vuex from 'vuex'\nimport { SOME_MUTATION } from './mutation-types'\n\nconst store = new Vuex.Store({\n  state: { ... },\n  mutations: {\n    // 定数を関数名として使用できる ES2015 の算出プロパティ名（computed property name）機能を使用できます\n    [SOME_MUTATION] (state) {\n      // 状態を変更する\n    }\n  }\n})\n\n定数を使用するかどうかは好みの問題です。多くの開発者による大規模なプロジェクトで役に立ちますが、完全にオプションなので、もしお気に召さなければ使用しなくても構いません。\nミューテーションは同期的でなければならない\nひとつの重要なルールを覚えておきましょう。それはミューテーションハンドラ関数は同期的でなければならないということです。なぜか？次の例で考えてみましょう:\nmutations: {\n  someMutation (state) {\n    api.callAsyncMethod(() => {\n      state.count++\n    })\n  }\n}\n\nいま、開発ツールのミューテーションのログを見ながら、アプリケーションのデバッグを行っていることを想像してください。全てのミューテーションをログに記録するためには、ミューテーションの前後の状態のスナップショットを捕捉することが必要です。しかし、上の例にあるミューテーション内の非同期コールバックは、それを不可能にします: そのコールバックは、ミューテーションがコミットされた時点ではまだ呼び出されていません。そして、コールバックが実際にいつ呼び出されるかを、開発ツールは知る術がありません。いかなる状態変更でも、コールバック内で起きる場合は本質的に追跡不可能です。\nコンポーネント内におけるミューテーションのコミット\nthis.$store.commit('xxx') と書くか、もしくはコンポーネントのメソッドを store.commit にマッピングする mapMutations ヘルパーを呼び出すこと（ルートの store の注入が必要）で、コンポーネント内でミューテーションをコミットできます:\nimport { mapMutations } from 'vuex'\n\nexport default {\n  // ...\n  methods: {\n    ...mapMutations([\n      'increment', // `this.increment()` を `this.$store.commit('increment')` にマッピングする\n\n      // mapMutations はペイロードサポートする:\n      'incrementBy' // `this.incrementBy(amount)` を `this.$store.commit('incrementBy', amount)` にマッピングする\n    ]),\n    ...mapMutations({\n      add: 'increment' // `this.add()` を `this.$store.commit('increment')` にマッピングする\n    })\n  }\n}\n\nアクションへ向けて\n状態変更を非同期に組み合わせることは、プログラムの動きを予測することを非常に困難にします。例えば、状態を変更する非同期コールバックを持った 2つのメソッドを両方呼び出すとき、それらがいつ呼び出されたか、どちらが先に呼び出されたかを、どうやって知ればよいのでしょう？これがまさに、状態変更と非同期の 2つの概念を分離したいという理由です。Vuex では全てのミューテーションは同期的に行うという作法になっています:\nstore.commit('increment')\n// \"increment\" ミューテーションによる状態変更は、この時点で行われるべきです\n\n非同期的な命令を扱うためにアクションを見てみましょう。\n"},"actions.html":{"url":"actions.html","title":"アクション","keywords":"","body":"アクション\nアクションはミューテーションと似ていますが、下記の点で異なります:\n\nアクションは、状態を変更するのではなく、ミューテーションをコミットします。\nアクションは任意の非同期処理を含むことができます。\n\nシンプルなアクションを登録してみましょう:\nconst store = new Vuex.Store({\n  state: {\n    count: 0\n  },\n  mutations: {\n    increment (state) {\n      state.count++\n    }\n  },\n  actions: {\n    increment (context) {\n      context.commit('increment')\n    }\n  }\n})\n\nアクションハンドラはストアインスタンスのメソッドやプロパティのセットと同じものを呼び出せるコンテキストオブジェクトを受け取ります。したがって context.commit を呼び出すことでミューテーションをコミットできます。あるいは context.state や context.getters で、状態やゲッターにアクセスできます。なぜコンテキストオブジェクトがストアインスタンスそのものではないのかは、後ほどモジュールで説明します。\n実際にはコードを少しシンプルにするために ES2015 の引数分割束縛（argument destructuring）がよく使われます（特に commit を複数回呼び出す必要があるとき）:\nactions: {\n  increment ({ commit }) {\n    commit('increment')\n  }\n}\n\nアクションのディスパッチ\nアクションは store.dispatch がトリガーとなって実行されます:\nstore.dispatch('increment')\n\nこれは一見ばかげて見えるかもしれません。つまり、カウントをインクリメントしたいときに、どうして直接 store.commit('increment') を呼び出してミューテーションをコミットしないのか、と。ミューテーションは同期的でなければならないというのを覚えていますか？アクションはそうではありません。アクションの中では非同期の操作を行うことができます。\nactions: {\n  incrementAsync ({ commit }) {\n    setTimeout(() => {\n      commit('increment')\n    }, 1000)\n  }\n}\n\nアクションはペイロード形式とオブジェクトスタイルのディスパッチをサポートします:\n// ペイロードを使ってディスパッチする\nstore.dispatch('incrementAsync', {\n  amount: 10\n})\n\n// オブジェクトを使ってディスパッチする\nstore.dispatch({\n  type: 'incrementAsync',\n  amount: 10\n})\n\nより実践的な例として、ショッピングカートをチェックアウトするアクションを挙げます。このアクションは非同期な API の呼び出しと、複数のミューテーションのコミットをします:\nactions: {\n  checkout ({ commit, state }, products) {\n    // 現在のカート内の商品を保存する\n    const savedCartItems = [...state.cart.added]\n    // チェックアウトのリクエストを送信し、楽観的にカート内をクリアする\n    commit(types.CHECKOUT_REQUEST)\n    // shop API は成功時のコールバックと失敗時のコールバックを受け取る\n    shop.buyProducts(\n      products,\n      // 成功時の処理\n      () => commit(types.CHECKOUT_SUCCESS),\n      // 失敗時の処理\n      () => commit(types.CHECKOUT_FAILURE, savedCartItems)\n    )\n  }\n}\n\n一連の非同期の処理を実行しつつ、ミューテーションのコミットによってのみ副作用（状態の変更）を与えていることに注意してください。\nコンポーネント内でのアクションのディスパッチ\nthis.$store.dispatch('xxx') でコンポーネント内でアクションをディスパッチできます。あるいはコンポーネントのメソッドを store.dispatch にマッピングする mapActions ヘルパーを使うこともできます（ルートの store の注入が必要です）:\nimport { mapActions } from 'vuex'\n\nexport default {\n  // ...\n  methods: {\n    ...mapActions([\n      'increment', // `this.increment()` を `this.$store.dispatch('increment')` にマッピングする\n      // `mapActions` もペイロードをサポートする:\n      'incrementBy' // `this.incrementBy(amount)` を `this.$store.dispatch('incrementBy', amount)` にマッピングする\n    ]),\n    ...mapActions({\n      add: 'increment' // `this.add()` を `this.$store.dispatch('increment')` にマッピングする\n    })\n  }\n}\n\nアクションを構成する\nアクションはしばしば非同期処理を行いますが、アクションが完了したことをどうやって知れば良いのでしょう？そしてもっと重要なことは、さらに複雑な非同期処理を取り扱うために、どうやって複数のアクションを構成させるかということです。\nまず知っておくべきことは store.dispatch がトリガーされたアクションハンドラによって返された Promise を処理できることと、store.dispatch もまた Promise を返すことです。\nactions: {\n  actionA ({ commit }) {\n    return new Promise((resolve, reject) => {\n      setTimeout(() => {\n        commit('someMutation')\n        resolve()\n      }, 1000)\n    })\n  }\n}\n\nすると次のようにできます:\nstore.dispatch('actionA').then(() => {\n  // ...\n})\n\nまた別のアクションで下記のように書くと:\nactions: {\n  // ...\n  actionB ({ dispatch, commit }) {\n    return dispatch('actionA').then(() => {\n      commit('someOtherMutation')\n    })\n  }\n}\n\n最終的に async / await を使用することで、次のようにアクションを組み合わせることができます:\n// `getData()` と `getOtherData()` が Promise を返すことを想定している\n\nactions: {\n  async actionA ({ commit }) {\n    commit('gotData', await getData())\n  },\n  async actionB ({ dispatch, commit }) {\n    await dispatch('actionA') // `actionA` が完了するのを待機する\n    commit('gotOtherData', await getOtherData())\n  }\n}\n\n\nstore.dispatch で異なるモジュール内の複数のアクションハンドラをトリガーすることができます。そのようなケースでは、全てのトリガーされたハンドラが解決されたときに解決する Promise が戻り値として返ってくることになります。\n\n"},"modules.html":{"url":"modules.html","title":"モジュール","keywords":"","body":"モジュール\n単一ステートツリーを使うため、アプリケーションの全ての状態は、一つの大きなストアオブジェクトに内包されます。しかしながら、アプリケーションが大きくなるにつれて、ストアオブジェクトは膨れ上がってきます。\nそのような場合に役立てるため Vuex ではストアをモジュールに分割できるようになっています。それぞれのモジュールは、モジュール自身の状態（state）、ミューテーション、アクション、ゲッター、モジュールさえも内包できます（モジュールをネストできます）- トップからボトムまでフラクタル構造です:\nconst moduleA = {\n  state: { ... },\n  mutations: { ... },\n  actions: { ... },\n  getters: { ... }\n}\n\nconst moduleB = {\n  state: { ... },\n  mutations: { ... },\n  actions: { ... }\n}\n\nconst store = new Vuex.Store({\n  modules: {\n    a: moduleA,\n    b: moduleB\n  }\n})\n\nstore.state.a // -> `moduleA` のステート\nstore.state.b // -> `moduleB` のステート\n\nモジュールのローカルステート\nモジュールのミューテーションやゲッターの中では、渡される第1引数はモジュールのローカルステートです。\nconst moduleA = {\n  state: { count: 0 },\n  mutations: {\n    increment (state) {\n      // `state` はモジュールのローカルステート\n      state.count++\n    }\n  },\n\n  getters: {\n    doubleCount (state) {\n      return state.count * 2\n    }\n  }\n}\n\n同様に、モジュールのアクションの中では context.state はローカルステートにアクセスでき、ルートのステートは context.rootState でアクセスできます:\nconst moduleA = {\n  // ...\n  actions: {\n    incrementIfOddOnRootSum ({ state, commit, rootState }) {\n      if ((state.count + rootState.count) % 2 === 1) {\n        commit('increment')\n      }\n    }\n  }\n}\n\nまた、モジュールのゲッターの中では、ルートのステートは第3引数でアクセスできます:\nconst moduleA = {\n  // ...\n  getters: {\n    sumWithRootCount (state, getters, rootState) {\n      return state.count + rootState.count\n    }\n  }\n}\n\n名前空間\nデフォルトでは、アクション、ミューテーション、そしてゲッター内部のモジュールはグローバル名前空間の元で登録されます - これにより、複数のモジュールが同じミューテーション/アクションタイプに反応することができます。\nモジュールをより自己完結型にまた再利用可能なものにしたい場合は、それを namespaced: true によって名前空間に分けることができます。モジュールが登録されると、そのゲッター、アクション、およびミューテーションのすべてが、モジュールが登録されているパスに基づいて自動的に名前空間に入れられます。例えば:\nconst store = new Vuex.Store({\n  modules: {\n    account: {\n      namespaced: true,\n\n      // モジュールのアセット\n      state: { ... }, // モジュールステートはすでにネストされており、名前空間のオプションによって影響を受けません\n      getters: {\n        isAdmin () { ... } // -> getters['account/isAdmin']\n      },\n      actions: {\n        login () { ... } // -> dispatch('account/login')\n      },\n      mutations: {\n        login () { ... } // -> commit('account/login')\n      },\n\n      // ネストされたモジュール\n      modules: {\n        // 親モジュールから名前空間を継承する\n        myPage: {\n          state: { ... },\n          getters: {\n            profile () { ... } // -> getters['account/profile']\n          }\n        },\n\n        // さらに名前空間をネストする\n        posts: {\n          namespaced: true,\n\n          state: { ... },\n          getters: {\n            popular () { ... } // -> getters['account/posts/popular']\n          }\n        }\n      }\n    }\n  }\n})\n\n名前空間のゲッターとアクションは、ローカライズされた getters、dispatch、commit を受け取ります。言い換えれば、同じモジュールに接頭辞 (prefix) を書き込まずに、モジュールアセットを使用することができます。名前空間オプションの切り替えは、モジュール内のコードには影響しません。\n名前空間付きモジュールでのグローバルアセットへのアクセス\nグローバルステートとゲッターを使いたい場合、rootState と rootGetters はゲッター関数の第3引数と第4引数として渡され、アクション関数に渡される context オブジェクトのプロパティとしても公開されます。\nアクションをディスパッチするか、グローバル名前空間にミューテーションをコミットするには、dispatch と commit の3番目の引数として {root: true} を渡します。\nmodules: {\n  foo: {\n    namespaced: true,\n\n    getters: {\n      // `getters` はこのモジュールのゲッターにローカライズされています\n      // ゲッターの第4引数経由で rootGetters を使うことができます\n      someGetter (state, getters, rootState, rootGetters) {\n        getters.someOtherGetter // -> 'foo/someOtherGetter'\n        rootGetters.someOtherGetter // -> 'someOtherGetter'\n      },\n      someOtherGetter: state => { ... }\n    },\n\n    actions: {\n      // ディスパッチとコミットもこのモジュール用にローカライズされています\n      // ルートディスパッチ/コミットの `root` オプションを受け入れます\n      someAction ({ dispatch, commit, getters, rootGetters }) {\n        getters.someGetter // -> 'foo/someGetter'\n        rootGetters.someGetter // -> 'someGetter'\n\n        dispatch('someOtherAction') // -> 'foo/someOtherAction'\n        dispatch('someOtherAction', null, { root: true }) // -> 'someOtherAction'\n\n        commit('someMutation') // -> 'foo/someMutation'\n        commit('someMutation', null, { root: true }) // -> 'someMutation'\n      },\n      someOtherAction (ctx, payload) { ... }\n    }\n  }\n}\n\n名前空間によるバインディングヘルパー\nmapState、mapGetters、mapActions、そして mapMutations ヘルパーを使って名前空間付きモジュールをコンポーネントにバインディングするとき、少し冗長になります:\ncomputed: {\n  ...mapState({\n    a: state => state.some.nested.module.a,\n    b: state => state.some.nested.module.b\n  })\n},\nmethods: {\n  ...mapActions([\n    'some/nested/module/foo',\n    'some/nested/module/bar'\n  ])\n}\n\nこのような場合は、第1引数としてモジュールの名前空間文字列をヘルパーに渡すことで、そのモジュールをコンテキストとして使用してすべてのバインディングを行うことができます。上記は次のように単純化できます。\ncomputed: {\n  ...mapState('some/nested/module', {\n    a: state => state.a,\n    b: state => state.b\n  })\n},\nmethods: {\n  ...mapActions('some/nested/module', [\n    'foo',\n    'bar'\n  ])\n}\n\nさらに、createNamespacedHelpers を使用することによって名前空間付けされたヘルパーを作成できます。指定された名前空間の値にバインドされた新しいコンポーネントバインディングヘルパーを持つオブジェクトを返します:\nimport { createNamespacedHelpers } from 'vuex'\n\nconst { mapState, mapActions } = createNamespacedHelpers('some/nested/module')\n\nexport default {\n  computed: {\n    // `some/nested/module` を調べます\n    ...mapState({\n      a: state => state.a,\n      b: state => state.b\n    })\n  },\n  methods: {\n    // `some/nested/module` を調べます\n    ...mapActions([\n      'foo',\n      'bar'\n    ])\n  }\n}\n\nプラグイン開発者向けの注意事項\nモジュールを提供するプラグインを作成し、ユーザーがそれらを Vuex ストアに追加できるようにすると、モジュールの予測できない名前空間が気になるかもしれません。あなたのモジュールは、プラグインユーザーが名前空間付きモジュールの元にモジュールを追加すると、その名前空間に属するようになります。この状況に適応するには、プラグインオプションを使用して名前空間の値を受け取る必要があります。\n// プラグインオプションで名前空間値を取得し、\n// そして、Vuex プラグイン関数を返す\nexport function createPlugin (options = {}) {\n  return function (store) {\n    /// 名前空間をプラグインモジュールの型に追加する\n    const namespace = options.namespace || ''\n    store.dispatch(namespace + 'pluginAction')\n  }\n}\n\n動的にモジュールを登録する\nストアが作られた後に store.registerModule メソッドを使って、モジュールを登録できます:\n// `myModule` モジュールを登録します\nstore.registerModule('myModule', {\n  // ...\n})\n\n// ネストされた `nested/myModule` モジュールを登録します\nstore.registerModule(['nested', 'myModule'], {\n  // ...\n})\n\nモジュールのステートには store.state.myModule と store.state.nested.myModule でアクセスします。\n動的なモジュール登録があることで、他の Vue プラグインが、モジュールをアプリケーションのストアに付属させることで、状態の管理に Vuex を活用できます。例えば vuex-router-sync ライブラリは、動的に付属させたモジュール内部でアプリケーションのルーティングのステートを管理することで vue-router と vuex を統合しています。\nstore.unregisterModule(moduleName) を呼び出せば、動的に登録したモジュールを削除できます。ただしストア作成（store creation）の際に宣言された、静的なモジュールはこのメソッドで削除できないことに注意してください。\nサーバサイドレンダリングされたアプリケーションから状態を保持するなど、新しいモジュールを登録するときに、以前の状態を保持したい場合があります。preserveState オプション(store.registerModule('a', module, { preserveState: true }))でこれを実現できます。\nモジュールの再利用\n時どき、モジュールの複数インスタンスを作成する必要があるかもしれません。例えば:\n\n同じモジュールを使用する複数のストアを作成する;\n同じストアに同じモジュールを複数回登録する\n\nモジュールの状態を宣言するために単純なオブジェクトを使用すると、その状態オブジェクトは参照によって共有され、変更時にクロスストア/モジュールの状態汚染を引き起こします。(例: runInNewContext オプションが false または 'once' のとき、SSR ではステートフルなシングルトンは避けます。)\nこれは、実際には Vue コンポーネント内部の data と全く同じ問題です。従って解決策も同じです。モジュールの状態を宣言するために関数を使用してください (2.3.0 以降でサポートされます):\nconst MyReusableModule = {\n  state () {\n    return {\n      foo: 'bar'\n    }\n  },\n  // ミューテーション、アクション、ゲッター...\n}\n\n"},"structure.html":{"url":"structure.html","title":"アプリケーションの構造","keywords":"","body":"アプリケーションの構造\nVuex は実際のところ、あなたがコードを構造化する方法を制限しません。もっと正確に言うと、それより高いレベルの原理原則を適用させます:\n\nアプリケーションレベルの状態はストアに集約されます。\n\n状態を変更する唯一の方法は、同期的に処理を行うミューテーションをコミットすることのみです。\n\n非同期的なロジックはカプセル化されるべきであり、それはアクションによって構成されます。\n\n\nこれらのルールに従っている限り、プロジェクトをどのように構造化するかはあなた次第です。もしストアファイルが大きくなり過ぎたら、単純にアクションやミューテーション、ゲッターをそれぞれ別のファイルに切り出すことができます。\nそれなりに手の込んだアプリケーションであれば、モジュールを活用する必要が出てきそうです。プロジェクトの構造の例は以下のようになります:\n├── index.html\n├── main.js\n├── api\n│   └── ... # API 呼び出しを抽象化する\n├── components\n│   ├── App.vue\n│   └── ...\n└── store\n    ├── index.js          # モジュールを集めてストアをエクスポートする\n    ├── actions.js        # アクションのルートファイル\n    ├── mutations.js      # ミューテーションのルートファイル\n    └── modules\n        ├── cart.js       # cart モジュール\n        └── products.js   # products モジュール\n\n参考として Shopping Cart Example をみてみるのもよいでしょう。\n"},"plugins.html":{"url":"plugins.html","title":"プラグイン","keywords":"","body":"プラグイン\nVuex ストア は、各ミューテーションへのフックを公開する plugins オプションを受け付けます。 Vuex プラグインは、単一の引数としてストアを受けつけるただの関数です:\nconst myPlugin = store => {\n  // ストアが初期化されたときに呼ばれます\n  store.subscribe((mutation, state) => {\n    // それぞれのミューテーションの後に呼ばれます\n    // ミューテーションは `{ type, payload }` の形式で提供されます\n  })\n}\n\nそして、このように利用することができます:\nconst store = new Vuex.Store({\n  // ...\n  plugins: [myPlugin]\n})\n\nプラグイン内でのミューテーションのコミット\nプラグインは直接、状態を変更できません。これはコンポーネントに似ています。プラグインはコンポーネント同様に、ミューテーションのコミットによる変更のトリガーだけで状態を変更できます。\nミューテーションのコミットによるストアとデータソースの同期をプラグインで実現できます。 websocket データソースとストアを例にします (これは不自然な例です。実際には、さらに複雑なタスクのために createPlugin 関数は、追加でいくつかのオプションを受け取れます):\nexport default function createWebSocketPlugin (socket) {\n  return store => {\n    socket.on('data', data => {\n      store.commit('RECEIVE_DATA', data)\n    })\n    store.subscribe((mutation) => {\n      if (mutation.type === 'UPDATE_DATA') {\n        socket.emit('update', mutation.payload)\n      }\n    })\n  }\n}\n\nconst plugin = createWebSocketPlugin(socket)\n\nconst store = new Vuex.Store({\n  state,\n  mutations,\n  plugins: [plugin]\n})\n\n状態のスナップショットを撮る\n時々、状態の\"スナップショット\"を撮って、ミューテーション前後の状態を比較したくなることがあるでしょう。それを実現するために、状態オブジェクトのディープコピーを行う必要があります:\nconst myPluginWithSnapshot = store => {\n  let prevState = _.cloneDeep(store.state)\n  store.subscribe((mutation, state) => {\n    let nextState = _.cloneDeep(state)\n\n    // `prevState` と `nextState` を比較...\n\n    // 次のミューテーションのために状態を保存\n    prevState = nextState\n  })\n}\n\n状態のスナップショットを撮るプラグインはアプリケーションの開発の間だけ使われるべきです。  webpack や Browserify を使っていれば、ビルドツールにそれを処理させることができます:\nconst store = new Vuex.Store({\n  // ...\n  plugins: process.env.NODE_ENV !== 'production'\n    ? [myPluginWithSnapshot]\n    : []\n})\n\n上のように記述すれば、プラグインはデフォルトで利用されることになります。本番環境( production ) では、 process.env.NODE_ENV !== 'production' を false に置き換えるために、 webpack ではDefinePlugin 、 Browserify ではenvify が必要になります。\nビルトインロガープラグイン\n\nもし、あなたが vue-devtools を使っている場合は、これは不要でしょう。\n\nVuex には、一般的なデバッグに利用する用途の備え付けのロガープラグインがあります。\nimport createLogger from 'vuex/dist/logger'\n\nconst store = new Vuex.Store({\n  plugins: [createLogger()]\n})\n\ncreateLogger 関数はいくつかのオプションを受け取ります:\nconst logger = createLogger({\n  collapsed: false, // ログ出力されたミューテーションを自動で展開します\n  filter (mutation, stateBefore, stateAfter) {\n    // ミューテーションを記録する必要がある場合は、`true` を返します\n    // `mutation` は `{ type, payload }` です\n    return mutation.type !== \"aBlacklistedMutation\"\n  },\n  transformer (state) {\n    // ロギングの前に、状態を変換します\n    // 例えば、特定のサブツリーのみを返します\n    return state.subTree\n  },\n  mutationTransformer (mutation) {\n    // ミューテーションは、`{ type, payload }` の形式でログ出力されます\n    // 任意の方法でそれをフォーマットできます\n    return mutation.type\n  },\n  logger: console, // `console` API の実装, デフォルトは `console`\n})\n\nロガーファイルは、他にも  タグで直接読み込むことができ、createVuexLogger 関数がグローバルに公開されます。\nロガープラグインは、状態のスナップショットを撮ることに注意しましょう。スナップショットを撮ることはコストがかかるため、開発中だけ利用してください。\n"},"strict.html":{"url":"strict.html","title":"厳格モード","keywords":"","body":"厳格モード\n厳格（strict）モードを有効にするには Vuex store を作成するときに、ただ strict: true を指定するだけです:\nconst store = new Vuex.Store({\n  // ...\n  strict: true\n})\n\n厳格モードでは Vuex の状態がミューテーションハンドラの外部で変更されたら、エラーを投げるようになります。これで全ての状態変更がデバッギングツールで明示的に追跡できることが保証されます。\n開発環境 vs 本番環境\n本番環境で厳格モードを有効にしてデプロイしてはいけません！厳格モードでは不適切なミューテーションを検出するためにステートツリーに対して深い監視を実行します。パフォーマンスコストを回避するために本番環境では無効にしてください。\nプラグインと同様に、ビルドツールに処理させることができます:\nconst store = new Vuex.Store({\n  // ...\n  strict: process.env.NODE_ENV !== 'production'\n})\n\n"},"forms.html":{"url":"forms.html","title":"フォームの扱い","keywords":"","body":"フォームの扱い\n厳格モードで Vuex を使用するとき、Vuex に属する状態の一部で v-model を使用するのは少しトリッキーです:\n\n\nobj がストアからオブジェクトを返す算出プロパティ (computed property) と仮定すると、v-model は input でユーザーが入力するとき、直接 obj.message を変更します。厳格モードでは、この変更は明示的に Vuex のミューテーションハンドラ内部で処理されていないため、エラーを投げます。\nそれに対処するための \"Vuex way\" は、 の値をバインディングし、input または change イベントでアクションを呼び出すことです:\n\n\n// ...\ncomputed: {\n  ...mapState({\n    message: state => state.obj.message\n  })\n},\nmethods: {\n  updateMessage (e) {\n    this.$store.commit('updateMessage', e.target.value)\n  }\n}\n\nミューテーションのハンドラは以下のようになります:\n// ...\nmutations: {\n  updateMessage (state, message) {\n    state.obj.message = message\n  }\n}\n\n双方向算出プロパティ\n確かに、上記の例は単純な v-model と ローカルステートよりもかなり冗長で、v-model のいくつかの有用な機能が使えません。代わりに、セッターで双方向算出プロパティを使うアプローチがあります。\n\n\ncomputed: {\n  message: {\n    get () {\n      return this.$store.state.obj.message\n    },\n    set (value) {\n      this.$store.commit('updateMessage', value)\n    }\n  }\n}\n\n"},"testing.html":{"url":"testing.html","title":"テスト","keywords":"","body":"テスト\n私たちが Vuex でユニットテストしたい主な部分はミューテーションとアクションです。\nミューテーションのテスト\nミューテーションは完全に引数に依存しているだけの関数であるため、テストするのがとても簡単です。効果的なやり方として、もし ES2015 のモジュールを使っていて store.js ファイルの中にミューテーションがあるなら、デフォルトエクスポートに加えて、名前付きエクスポートでミューテーションをエクスポートできます。\nconst state = { ... }\n\n// 名前付きエクスポートでミューテーションをエクスポートする\nexport const mutations = { ... }\n\nexport default new Vuex.Store({\n  state,\n  mutations\n})\n\nMocha + Chai を使用してミューテーションをテストする例です（あなたの好きな任意のフレームワーク/アサーションライブラリを使用できます）:\n// mutations.js\nexport const mutations = {\n  increment: state => state.count++\n}\n\n// mutations.spec.js\nimport { expect } from 'chai'\nimport { mutations } from './store'\n\n// ミューテーションの分割束縛\nconst { increment } = mutations\n\ndescribe('mutations', () => {\n  it('INCREMENT', () => {\n    // ステートのモック\n    const state = { count: 0 }\n    // ミューテーションを適用する\n    increment(state)\n    // 結果を検証する\n    expect(state.count).to.equal(1)\n  })\n})\n\nアクションのテスト\nアクションは外部の API を呼び出す可能性があるため、ミューテーションのテストよりも少し注意が必要です。アクションをテストするとき、通常、いくつかの段階でモックを作る必要があります。例えば API 呼び出しをサービスとして抽象化し、そしてテストの内部ではそのサービスをモックにすることができます。簡単に依存関係をモック化するために、webpack と inject-loader を使ってテストファイルをバンドルすることができます。\n非同期なアクションのテストの例:\n// actions.js\nimport shop from '../api/shop'\n\nexport const getAllProducts = ({ commit }) => {\n  commit('REQUEST_PRODUCTS')\n  shop.getProducts(products => {\n    commit('RECEIVE_PRODUCTS', products)\n  })\n}\n\n// actions.spec.js\n\n// inline loader のために require 構文を使用する\n// ここでは inject-loader を使って、モック化された依存関係を注入できるようにするモジュールファクトリーを返す\nimport { expect } from 'chai'\nconst actionsInjector = require('inject-loader!./actions')\n\n// モックによってモジュールを作成する\nconst actions = actionsInjector({\n  '../api/shop': {\n    getProducts (cb) {\n      setTimeout(() => {\n        cb([ /* レスポンスのモック */ ])\n      }, 100)\n    }\n  }\n})\n\n// 期待されるミューテーションをアクションが呼び出すかをテストするためのヘルパー\nconst testAction = (action, payload, state, expectedMutations, done) => {\n  let count = 0\n\n  // コミットをモックする\n  const commit = (type, payload) => {\n    const mutation = expectedMutations[count]\n\n    try {\n      expect(mutation.type).to.equal(type)\n      if (payload) {\n        expect(mutation.payload).to.deep.equal(payload)\n      }\n    } catch (error) {\n      done(error)\n    }\n\n    count++\n    if (count >= expectedMutations.length) {\n      done()\n    }\n  }\n\n  // モック化したストアと引数でアクションを呼び出す\n  action({ commit, state }, payload)\n\n  // 呼び出されるべきミューテーションが残っていないか確認する\n  if (expectedMutations.length === 0) {\n    expect(count).to.equal(0)\n    done()\n  }\n}\n\ndescribe('actions', () => {\n  it('getAllProducts', done => {\n    testAction(actions.getAllProducts, null, {}, [\n      { type: 'REQUEST_PRODUCTS' },\n      { type: 'RECEIVE_PRODUCTS', payload: { /* レスポンスのモック */ } }\n    ], done)\n  })\n})\n\nゲッターのテスト\nもしゲッターが複雑な計算を行っているならば、テストコードを書く価値があります。ゲッターはミューテーションと同様の理由でテストしやすいです。\nゲッターのテストの例:\n// getters.js\nexport const getters = {\n  filteredProducts (state, { filterCategory }) {\n    return state.products.filter(product => {\n      return product.category === filterCategory\n    })\n  }\n}\n\n// getters.spec.js\nimport { expect } from 'chai'\nimport { getters } from './getters'\n\ndescribe('getters', () => {\n  it('filteredProducts', () => {\n    // ステートをモックする\n    const state = {\n      products: [\n        { id: 1, title: 'Apple', category: 'fruit' },\n        { id: 2, title: 'Orange', category: 'fruit' },\n        { id: 3, title: 'Carrot', category: 'vegetable' }\n      ]\n    }\n    // ゲッターをモックする\n    const filterCategory = 'fruit'\n\n    // ゲッターから結果を受け取る\n    const result = getters.filteredProducts(state, { filterCategory })\n\n    // 結果を検証する\n    expect(result).to.deep.equal([\n      { id: 1, title: 'Apple', category: 'fruit' },\n      { id: 2, title: 'Orange', category: 'fruit' }\n    ])\n  })\n})\n\nテストの実行\nミューテーションやアクションが適切に書かれている場合は、適切にモック化された後、テストコードはブラウザの API に直接依存関係を持つことはないでしょう。したがって、単純に webpack でテストをバンドルでき、それを直接 Node で実行できます。別の方法として、本当のブラウザでテストを実行するためには mocha-loader または Karma + karma-webpack を使用できます。\nNode での実行\n以下のような webpack の設定を作成します（.babelrc もあわせて使います）:\n// webpack.config.js\nmodule.exports = {\n  entry: './test.js',\n  output: {\n    path: __dirname,\n    filename: 'test-bundle.js'\n  },\n  module: {\n    loaders: [\n      {\n        test: /\\.js$/,\n        loader: 'babel-loader',\n        exclude: /node_modules/\n      }\n    ]\n  }\n}\n\nそれから下記コマンドを実行します:\nwebpack\nmocha test-bundle.js\n\nブラウザでの実行\n\nmocha-loader をインストールする\n上記 webpack 設定から entry を 'mocha-loader!babel-loader!./test.js' に変更する\n設定を使用して webpack-dev-server を開始する\nブラウザで localhost:8080/webpack-dev-server/test-bundle を開く \n\nKarma + karma-webpack を使ったブラウザでの実行\nvue-loader ドキュメント 内のセットアップ方法を参考にしてください。\n"},"hot-reload.html":{"url":"hot-reload.html","title":"ホットリローディング","keywords":"","body":"ホットリローディング\nVuex は webpack の Hot Module Replacement API を使用することで、アプリケーションの開発を行っている間のミューテーション、モジュール、アクション、ゲッターのホットリローディングをサポートします。Browserify では browserify-hmr プラグインを使用することができます。\nミューテーションとモジュールのホットリローディングのために、store.hotUpdate()  API メソッドを利用する必要があります:\n// store.js\nimport Vue from 'vue'\nimport Vuex from 'vuex'\nimport mutations from './mutations'\nimport moduleA from './modules/a'\n\nVue.use(Vuex)\n\nconst state = { ... }\n\nconst store = new Vuex.Store({\n  state,\n  mutations,\n  modules: {\n    a: moduleA\n  }\n})\n\nif (module.hot) {\n  // ホットモジュールとしてアクションとモジュールを受け付けます\n  module.hot.accept(['./mutations', './modules/a'], () => {\n    // 更新されたモジュールをインポートする\n    // babel 6 のモジュール出力のため、ここでは .default を追加しなければならない\n    const newActions = require('./actions').default\n    const newMutations = require('./mutations').default\n    // 新しいアクションとミューテーションにスワップ\n    store.hotUpdate({\n      mutations: newMutations,\n      modules: {\n        a: newModuleA\n      }\n    })\n  })\n}\n\nホットリローディングを試したい場合は、counter-hot exampleをチェックアウトしてください。\n"},"api.html":{"url":"api.html","title":"API リファレンス","keywords":"","body":"API リファレンス\nVuex.Store\nimport Vuex from 'vuex'\n\nconst store = new Vuex.Store({ ...options })\n\nVuex.Store コンストラクタオプション\n\nstate\n\n型: Object | Function\nストアのための ルートステートオブジェクトです。詳細\nオブジェクトを返す関数を渡す場合、返されたオブジェクトはルートステートとして使用されます。これは特にモジュールの再利用のためにステートオブジェクトを再利用する場合に便利です。詳細\n\n\n\nmutations\n\n型: { [type: string]: Function }\nストアにミューテーションを登録します。ハンドラ関数は第一引数に state を常に受け取り(モジュール内で定義されていれば、モジュールのローカルステートを受け取り)、指定されていれば第二引数に payload を受け取ります。\n詳細\n\n\n\nactions\n\n型: { [type: string]: Function }\nストアにアクションを登録します。ハンドラ関数は次のプロパティを持つ context オブジェクトを受け取ります。:\n{\n  state,      // `store.state` と同じか、モジュール内にあればローカルステート\n  rootState,  // `store.state` と同じ。ただしモジュール内に限る\n  commit,     // `store.commit` と同じ\n  dispatch,   // `store.dispatch` と同じ\n  getters,    // `store.getters` と同じか、モジュール内にあればローカルゲッター\n  rootGetters // `store.getters` と同じ。ただしモジュール内に限る\n}\n\n詳細\n\n\n\ngetters\n\ntype: { [key: string]: Function }\nストアにゲッターを登録します. ゲッター関数は次の引数を受け取ります:\nstate,     // モジュール内で定義されていればモジュールのローカルステート\ngetters    // store.getters と同じ\nモジュールで定義されたときの仕様\nstate,       // モジュールで定義された場合、モジュールのローカルステート\ngetters,     // 現在のモジュールのモジュールのローカルゲッター\nrootState,   // グローバルステート\nrootGetters  // 全てのゲッター\n登録されたゲッターは store.getters 上に公開されます。\n詳細\n\n\n\nmodules\n\n型: Object\nサブモジュールを含む次のような形式のオブジェクトはストアにマージされます。\n{\n  key: {\n    state,\n    mutations\n    actions?,\n    getters?,\n    modules?\n\n  },\n  ...\n}\n\n各モジュールは、ルートオプションに似た state と mutations を含むことができます。モジュールの状態は、モジュールのキーを使って、ストアのルートステートに結合されます。モジュールのミューテーションとゲッターは、第一引数としてルートステートの代わりに、モジュールのローカルステートだけを受け取り、モジュールのアクションの context.state もローカルステートを指すようになります。\n詳細\n\n\n\nplugins\n\n型: Array\nプラグイン関数の配列は、ストアに適用されます。このプラグインは、ストアだけを引数として受け取り、外部への永続化、ロギング、デバッギングのために、ミューテーションを監視するか、または、 websocket や observable のような外から渡されるデータのためにミューテーションをディスパッチします。\n詳細\n\n\n\nstrict\n\n型: Boolean\nデフォルト: false\nVuex ストアを厳格モードにします。厳格モードでは、ミューテーションハンドラ以外で、 Vuex の状態の変更を行うと、エラーが投げられます。\n詳細\n\n\n\n\nVuex.Store インスタンスプロパティ\n\nstate\n\ntype: Object\nルートステート、読み取り専用です。\n\n\n\ngetters\n\ntype: Object\n登録されているゲッターを公開します。読み取り専用です。\n\n\n\n\nVuex.Store インスタンスメソッド\n\ncommit(type: string, payload?: any, options?: Object) | commit(mutation: Object, options?: Object)\nミューテーションをコミットします。options は名前空間付きモジュールで root なミューテーションにコミットできる root: true を持つことできます。詳細\n\ndispatch(type: string, payload?: any, options?: Object) | dispatch(action: Object, options?: Object)\nアクションをディスパッチします。options は名前空間付きモジュールで root なアクションにディスパッチできる root: true を持つことできます。 すべてのトリガーされたアクションハンドラを解決するPromiseを返します。詳細\n\nreplaceState(state: Object)\nストアのルートステートを置き換えます。これは、ステートのハイドレーションやタイムトラベルのためだけに利用すべきです。\n\nwatch(getter: Function, cb: Function, options?: Object)\nリアクティブにゲッター関数の返す値を監視します。値が変わった場合は、コールバックを呼びます。ゲッターはストアの state を最初の引数として、 getters を2番目の引数として受け取ります。 Vue のvm.$watchメソッドと同じオプションをオプションのオブジェクトとして受け付けます。\n監視を止める場合は、ハンドラ関数の返り値を関数として呼び出します。\n\nsubscribe(handler: Function)\nストアへのミューテーションを購読します。handler は、全てのミューテーションの後に呼ばれ、引数として、ミューテーション ディスクリプタとミューテーション後の状態を受け取ります。\nstore.subscribe((mutation, state) => {\n  console.log(mutation.type)\n  console.log(mutation.payload)\n})\n\nプラグインの中でもっともよく利用されます。詳細\n\nsubscribeAction(handler: Function)\n\n2.5.0 で新規追加\n\nストアアクションを購読します。handler はディスパッチされたアクションごとに呼び出され、アクション記述子と現在のストア状態を引数として受け取ります:\nstore.subscribeAction((action, state) => {\n  console.log(action.type)\n  console.log(action.payload)\n})\n\n\n\n　プラグインで最も一般的に使用されます。Details\n\nregisterModule(path: string | Array, module: Module, options?: Object)\n動的なモジュールを登録します。詳細\noptions は前の状態を保存する preserveState: true を持つことができます。サーバサイドレンダリングに役立ちます。\n\nunregisterModule(path: string | Array)\n動的なモジュールを解除します。詳細\n\nhotUpdate(newOptions: Object)\n新しいアクションとミューテーションをホットスワップします。詳細\n\n\nコンポーネントをバインドするヘルパー\n\nmapState(namespace?: string, map: Array | Object): Object\nストアのサブツリーを返すコンポーネントの computed オプションを作成します。詳細\n第1引数は、オプションで名前空間文字列にすることができます。詳細\n\nmapGetters(namespace?: string, map: Array | Object): Object\nゲッターの評価後の値を返すコンポーネントの computed オプションを作成します。詳細\n第1引数は、オプションで名前空間文字列にすることができます。詳細\n\nmapActions(namespace?: string, map: Array | Object): Object\nアクションをディスパッチするコンポーネントの methods オプションを作成します。詳細\n第1引数は、オプションで名前空間文字列にすることができます。詳細\n\nmapMutations(namespace?: string, map: Array | Object): Object\nミューテーションをコミットするコンポーネントの methods オプションを作成します。詳細\n第1引数は、オプションで名前空間文字列にすることができます。詳細\n\ncreateNamespacedHelpers(namespace: string): Object\n名前空間付けられたコンポーネントバインディングのヘルパーを作成します。返されるオブジェクトは指定された名前空間にバインドされた mapState、mapGetters、mapActions そして mapMutations が含まれます。詳細はこちら\n\n\n"}}}