{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["3.0","action","api","getter","introduct","modul","mutat","state","typescript","vue@>=2.5，反之亦然。","vuex","vuex@>=","严格模式","依赖","安装","开始","插件","文档","是什么？","更新记录","核心概念","注意：对于","测试","热重载","用户来说","表单处理","项目结构"],"installation.html":["'vue'","'vuex'","/","add","build","cd","cdn","clone","dev","git","github","https://github.com/vuejs/vuex.git","https://unpkg.com/vuex","https://unpkg.com/vuex@2.0.0","import","instal","node_modules/vuex","npm","run","save","script","unpkg.com","vue","vue.use()","vue.use(vuex)","vuex","vuex：","yarn","上克隆代码并自己构建。","上发布的最新版本。您也可以通过","之后引入","会进行自动安装：","分支下的最新版本，您可以直接从","在","在一个模块化的打包系统中，您必须显式地通过","如果需要使用","安装","引用","当使用全局","提供了基于","时，不需要以上安装过程。","来安装","标签引用","的","直接下载","自己构建","这样的方式指定特定的版本。","链接。以上的链接会一直指向"],"intro.html":["()","//","0","`","`,","abramov","action","actions，响应在","architecture。与其他模式不同的是，vuex","bu","count","count:","dan","data","devtool","elm","event","extension，提供了诸如零配置的","flux","flux、redux、和","global","increment","methods:","new","redux","return","state","state，驱动应用的数据源；","template:","this.count++","time","travel","view","view，以声明方式将","vue","vue({","vue.j","vuex","vuex。一个简单的","vuex？","{","{{","}","})","},","}}","上的用户输入导致的状态变化。","也集成到","什么情况下我应该使用","什么是“状态管理模式”？","以下是一个表示“单向数据流”理念的极简示意：","但是，当我们的应用遇到多个组件共享状态时，单向数据流的简洁性很容易被破坏：","另外，通过定义和隔离状态管理中的各种概念并强制遵守一定的规则，我们的代码将会变得更结构化且易维护。","可以帮助我们管理共享状态，但也附带了更多的概念和框架。这需要对短期和长期效益进行权衡。","可能是繁琐冗余的。确实是如此——如果您的应用够简单，您最好不要使用","因此，我们为什么不把组件的共享状态抽取出来，以一个全局单例模式管理呢？在这种模式下，我们的组件树构成了一个巨大的“视图”，不管在树的哪个位置，任何组件都能获取状态或者触发行为！","多个视图依赖于同一状态。","如果您不打算开发大型单页应用，使用","对于问题一，传参的方法对于多层嵌套的组件将会非常繁琐，并且对于兄弟组件间的状态传递无能为力。对于问题二，我们经常会采用父子组件直接引用或者通过事件来变更和同步状态的多份拷贝。以上的这些模式非常脆弱，通常会导致无法维护的代码。","将会成为自然而然的选择。引用","就足够您所需了。但是，如果您需要构建是一个中大型单页应用，您很可能会考虑如何更好地在组件外部管理状态，vuex","应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态，并以相应的规则保证状态以一种可预测的方式发生变化。vuex","映射到视图；","是一个专为","是专门为","是什么？","来自不同视图的行为需要变更同一状态。","架构就像眼镜：您自会知道什么时候需要它。","的作者","的官方调试工具","的细粒度数据响应机制来进行高效的状态更新。","的话说就是：","背后的基本思想，借鉴了","虽然","计数应用开始：","让我们从一个简单的","设计的状态管理库，以利用","调试、状态快照导入导出等高级调试功能。","这个状态自管理应用包含以下几个部分：","这就是"],"getting-started.html":["(commit)","(state)","(state)。vuex","//","0","1","=",">","console.log(store.state.count)","const","count:","es2015","es2015，你得抓紧了！","increment","method","mutat","mutations:","mutation。","mutation。这样使得我们可以方便地跟踪每一个状态的变化，从而让我们能够实现一些工具帮助我们更好地了解我们的应用。","mutation：","new","state","state.count++","state:","store","store.commit","store.commit('increment')","store.st","store.state.count，是因为我们想要更明确地追踪到状态的变化。这个简单的约定能够让你的意图更加明显，这样你在阅读代码的时候能更容易地解读应用内部的状态改变。此外，这样也让我们有机会去实现一些能记录每次状态改变，保存状态快照的调试工具。有了它，我们甚至可以实现如时间穿梭般的调试体验。","store。创建过程直截了当——仅需要提供一个初始","store（仓库）。“store”基本上就是一个容器，它包含着你的应用中大部分的状态","vue","vue.use(vuex)","vuex","vuex.store({","{","}","})","},","中提交","中的状态。改变","中的状态发生变化，那么相应的组件也会相应地得到高效更新。","中的状态是响应式的，在组件中调用","中的状态的唯一途径就是显式地提交","中的状态简单到仅需要在计算属性中返回即可。触发变化也仅仅是在组件的","中读取状态的时候，若","之后，让我们来创建一个","你不能直接改变","再次强调，我们通过提交","和单纯的全局对象有以下两点不同：","如果在模块化构建系统中，请确保在开头调用了","安装","对象和一些","应用的核心就是","开始","接下来，我们将会更深入地探讨一些核心概念。让我们先从","提示：我们将在后续的文档示例代码中使用","方法触发状态变更：","最简单的","来获取状态对象，以及通过","概念开始。","每一个","现在，你可以通过","由于","的方式，而非直接改变","的状态存储是响应式的。当","组件从","记数应用示例。","语法。如果你还没能掌握","这是一个最基本的"],"core-concepts.html":["action","getter","modul","mutat","state","vuex","在这一章，我们将会学到","来说是必要的。","核心概念","深入理解所有的概念对于使用","的这些核心概念。他们是：","让我们开始吧。"],"state.html":["'#app',","'count'","'count',","'vuex'","()","(ssot)”而存在。这也意味着，每个应用将仅仅包含一个","(state)","*/","+","...","...mapstate({","/*","//","3","=","=>","])","`","`state","`this`","`{{","app","components:","comput","computed:","const","count","count:","countalias:","counter","countpluslocalst","default","dom。","ecmascript","el:","export","import","localcomput","mapstat","mapstate([","mapstate({","new","return","stage","state","state.count","state.count,","state.count`","store","store,","store.state.count","template:","this.$stor","this.$store.state.count","this.count","this.localcount","vue","vue({","vue.use(vuex)）：","vuex","vuex.mapst","vuex。虽然将所有的状态放到","{","}","})","},","}}`,","“store”","为","为了能够使用","会使状态变化更显式和易调试，但也会使代码变得冗长和不直观。如果有些状态严格属于单个组件，最好还是作为组件的局部状态。你应该根据你的应用开发需要进行权衡和确定。","传一个字符串数组。","传字符串参数","使用","使用单一状态树——是的，用一个对象就包含了全部的应用层级状态。至此它便作为一个“唯一数据源","使用对象展开运算符将此对象混入到外部对象中","函数返回的是一个对象。我们如何将它与局部计算属性混合使用呢？通常，我们需要使用一个工具函数将多个对象合并为一个，以使我们可以将最终对象传给","创建一个","单一状态树","单状态树和模块化并不冲突——在后面的章节里我们会讨论如何将状态和状态变更事件分布到各个子模块中。","变化的时候,","在","在单独构建的版本中辅助函数为","实例。单一状态树让我们能够直接地定位任一特定的状态片段，在调试的过程中也能轻易地取得整个当前应用状态的快照。","实例中读取状态最简单的方法就是在计算属性中返回某个状态：","实例会注入到根组件下的所有子组件中，且子组件能通过","对象展开运算符","对象提供给","属性。但是自从有了对象展开运算符（现处于","并不意味着你需要将所有的状态放入","当一个组件需要获取多个状态时候，将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题，我们可以使用","当映射的计算属性的名称与","把","提案","映射","每当","然而，这种模式导致组件依赖全局状态单例。在模块化的构建系统中，在每个需要使用","状态","的子节点名称相同时，我们也可以给","的实例注入所有的子组件","的实现：","的状态存储是响应式的，从","的组件中需要频繁地导入，并且在测试组件时需要模拟状态。","等同于","箭头函数可使代码更简练","组件","组件中展示状态呢？由于","组件中获得","组件仍然保有局部状态","获取局部状态，必须使用常规函数","访问到。让我们更新下","辅助函数","辅助函数帮助我们生成计算属性，让你少按几次键：","选项，提供了一种机制将状态从根组件“注入”到每一个子组件中（需调用","选项，该","选项，这可以把","通过","通过在根实例中注册","那么我们如何在","都会重新求取计算属性，并且触发更新相关联的","阶段），我们可以极大地简化写法："],"getters.html":["'...',","'anothergetter',","'donetodoscount'","'donetodoscount',","'vuex'","()","(id)","(state)","(state,","...","...mapgetters([","//","1","1,","2,","=","===","=>",">","[","[{","]","])","`store.getters.donetodoscount`","`this.donecount`","comput","computed:","const","default","done:","donecount:","donetodos:","donetodoscount","donetodoscount:","export","fals","getter","getters)","getters.donetodos.length","getters:","gettodobyid:","id)","id:","import","mapgett","mapgetters({","new","return","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({","{","}","})","},","}]","中定义“getter”（可以认为是","中派生出一些状态，例如对列表进行过滤并计数：","中的","为","也可以接受其他","会暴露为","传参。在你对","作为其第一个参数：","作为第二个参数：","你也可以通过让","使用对象展开运算符将","允许我们在","如果你想将一个","如果有多个组件需要用到此属性，我们要么复制这个函数，或者抽取到一个共享函数然后在多处导入它——无论哪种方式都不是很理想。","对象中","对象：","属性另取一个名字，使用对象形式：","我们可以很容易地在任何组件中使用它：","接受","映射","映射到局部计算属性：","有时候我们需要从","混入","的计算属性）。就像计算属性一样，getter","的返回值会根据它的依赖被缓存起来，且只有当它的依赖值发生了改变才会被重新计算。","辅助函数","辅助函数仅仅是将","返回一个函数，来实现给","里的数组进行查询时非常有用。"],"mutations.html":["\"increment\"","'./mutat","'increment'","'increment',","'incrementby'","'newprop',","'some_mutation'","'vuex'","(handler)。这个回调函数就是我们实际进行状态更改的地方，并且它会接受","(state)","(state,","(type)","+=","...","...mapmutations([","...mapmutations({","...state.obj,","//","1","10","10)","123","123),","3","=","=>","[some_mutation]","]),","`mapmutations`","`this.$store.commit('increment')`","`this.$store.commit('incrementby',","`this.add()`","`this.increment()`","`this.incrementby(amount)`","action。","add:","amount)`","amount:","api.callasyncmethod(()","app","const","count:","debug","default","devtool","es2015","export","flux","handler","handler。这个选项更像是事件注册：“当触发一个类型为","handler，你需要以相应的","import","increment","linter","mapmut","method","methods:","mutat","mutations:","mutation。vuex","mutation，或者使用","n","n)","new","newprop:","payload)","payload.amount","some_mut","somemut","stage","state","state.count","state.count++","state.obj","state:","store","store.commit","store.commit('increment')","store.commit('increment',","store.commit({","store.j","store）。","this.$store.commit('xxx')","type","type:","types'","types.j","vue","vue.set(obj,","vuex","vuex.store({","{","}","})","},","一个","一条重要的原则就是要记住","一样遵守一些注意事项：","一目了然：","下一步：action","不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。","中初始化好所有所需属性。","中混合异步调用会导致你的程序很难调试。例如，当你调用了两个包含异步回调的","中的","中的异步函数中的回调让这不可能完成：因为当","中的状态是响应式的，那么当我们变更状态时，监视状态的","中的状态的唯一方法是提交","中，mutat","为了处理异步操作，让我们来看一看","之类的工具发挥作用，同时把这些常量放在单独的文件中可以让你的代码合作者对整个","也支持载荷：","也需要与使用","事件类型","事件类型在各种","以新对象替换老对象。例如，利用","任何由","会更易读：","传入额外的参数，即","作为第一个参数：","你不能直接调用一个","你可以向","你可以在组件中使用","使用","使用常量替代","保持不变：","函数，因此","包含的","变更状态","和","回调函数","在","在大多数情况下，载荷应该是一个对象，这样可以包含多个字段并且记录的","在组件中提交","实现中是很常见的模式。这样可以使","对象风格的提交方式","导致的状态变更都应该在此刻完成。","将","属性的对象：","并且观察","当使用对象风格的提交方式，整个对象都作为载荷传给","当需要在对象上添加新属性时，你应该","必须是同步函数","必须是同步函数。为什么？请参考下面的例子：","我们可以使用","或者","提交","提交载荷（payload）","方法：","既然","日志。每一条","时，调用此函数。”要唤醒一个","映射为","更改","最好提前在你的","来改变状态，你怎么知道什么时候回调和哪个先回调呢？这就是为什么我们要区分这两个概念。在","现在想象，我们正在","用不用常量取决于你——在需要多人协作的大型项目中，这会很有帮助。但如果你不喜欢，你完全可以不这样做。","的","的另一种方式是直接使用包含","的响应规则","的对象展开运算符我们可以这样写：","组件也会自动更新。这也意味着","被记录，devtool","触发的时候，回调函数还没有被调用，devtool","调用","调用（需要在根节点注入","载荷（payload）：","辅助函数将组件中的","都是同步事务：","都有一个字符串的","都需要捕捉到前一状态和后一状态的快照。然而，在上面的例子中","需遵守","非常类似于事件：每个","风格的计算属性命名功能来使用一个常量作为函数名"],"actions.html":["'increment'","'increment',","'incrementasync',","'incrementby'","'vuex'","()","(context)","(state)","({",")","...","...mapactions([","...mapactions({","/","//","0","10","1000)","=","=>","[...state.cart.added]","]),","`mapactions`","`this.$store.dispatch('increment')`","`this.$store.dispatch('incrementby',","`this.add()`","`this.increment()`","`this.incrementby(amount)`","action","actiona","actionb","actions:","action，以处理更加复杂的异步流程？","action，或者使用","action：","add:","amount)`","amount:","api","async","await","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","context.commit","context.commit('increment')","context.gett","context.st","count:","default","dispatch('actiona')","dispatch('actiona').then(()","dispatch,","es2015","export","getdata()","getdata())","getotherdata()","getotherdata())","getters。当我们在之后介绍到","import","increment","incrementasync","mapact","method","methods:","modul","mutat","mutations:","mutation，不同在于：","mutation，或者通过","mutation，而不是直接变更状态。","mutation：","new","products)","products,","promis","promise((resolve,","promise，并且","promise：","reject)","resolve()","return","savedcartitem","savedcartitems)","settimeout(()","shop.buyproducts(","state","state.count++","state:","store","store.dispatch","store.dispatch('actiona').then(()","store.dispatch('increment')","store.dispatch('incrementasync',","store.dispatch({","store）：","this.$store.dispatch('xxx')","type:","vuex.store({","{","}","})","},","一个","中也可以：","乍一眼看上去感觉多此一举，我们直接分发","也支持载荷：","产生的副作用（即状态变更）。","什么时候结束呢？更重要的是，我们如何才能组合多个","仍旧返回","以对象形式分发","以载荷形式分发","你在组件中使用","假设","内部执行异步操作：","函数。在这种情况下，只有当所有触发函数完成后，返回的","函数接受一个与","分发","参数解构","发出结账请求，然后乐观地清空购物车","可以包含任意异步操作。","可以处理被触发的","和","和分发多重","在不同模块中可以触发多个","在另外一个","在组件中分发","失败操作","完成","实例具有相同方法和属性的","实例本身了。","实践中，我们会经常用到","对象为什么不是","对象，因此你可以调用","将","就不受约束！我们可以在","岂不更方便？实际上并非如此，还记得","很多次的时候）：","必须同步执行这个限制么？action","成功操作","才会执行。","把当前购物车的物品备份起来","接受一个成功回调和一个失败回调","提交一个","提交的是","支持同样的载荷方式和对象方式进行分发：","方法触发：","时，你就知道","映射为","最后，如果我们利用","来看一个更加实际的购物车示例，涉及到调用异步","来简化代码（特别是我们需要调用","来获取","来记录","注意我们正在进行一系列的异步操作，并且通过提交","现在你可以：","的","的处理函数返回的","等待","类似于","组合","让我们来注册一个简单的","调用（需要先在根节点注入","购物","辅助函数将组件的","返回的是","通常是异步的，那么如何知道","通过","首先，你需要明白"],"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","()","(ctx,","(option","(state)","(state,","(store)","({","(例如当","*","+","...","...mapactions('some/nested/module',","...mapactions([","...mapstate('some/nested/module',","...mapstate({","//","0","1)","2","2.3.0+","=","===","=>",">","[","])","`mymodule`","`namespaced`","`nested/mymodule`","`root`","`rootgetters`","`some/nested/module`","`state`","a:","account:","action","actions:","action、mut","action。","action，局部状态通过","assets）","assets）时不需要在同一模块内额外添加空间名前缀。更改","b:","commit","commit('account/login')","commit('increment')","commit('somemutation')","commit('somemutation',","commit,","commit。换言之，你在使用模块内容（modul","computed:","const","context","context.rootstate：","context.st","count:","createnamespacedhelp","createnamespacedhelpers('some/nested/module')","createplugin","data","default","dispatch","dispatch('account/login')","dispatch('someotheraction')","dispatch('someotheraction',","dispatch,","doublecount","export","fals","foo:","function","getter","getters,","getters.somegett","getters.someothergett","getters:","getters['account/isadmin']","getters['account/posts/popular']","getters['account/profile']","getter、act","getter，dispatch","getter，rootst","getter，也会通过","getter，接收的第一个参数是模块的局部状态对象。","getter，根节点状态会作为第三个参数暴露出来：","import","increment","incrementifoddonrootsum","isadmin","login","mapact","mapgetters,","mapmut","mapstate,","methods:","modul","module,","modulea","modulea,","moduleb","modules:","mutat","mutation,","mutations:","mutation，将","mypage:","myreusablemodul","namespac","namespaced:","new","null,","options.namespac","payload)","popular","posts:","preservest","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:","state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割：","state。你可以通过","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)","store，他们公用同一个模块","store，可能需要考虑模块的空间名称问题。对于这种情况，你可以通过插件的参数对象来允许用户指定空间名称：","sumwithrootcount","sync","true","true,","vue","vuex","vuex.store({","{","{})","||","}","})","})。","},","中多次注册同一个模块","中查找","中附加新模块的方式来使用","中，`getters`","为了解决以上问题，vuex","之后就可以通过","也被局部化了","他们可以接受","会作为第三和第四参数传入","会收到局部化的","作为第三参数传给","作出响应。","你也可以使用","你可以使用","允许我们将","分割成模块（module）。每个模块拥有自己的","创建之后，你可以使用","创建基于某个命名空间辅助函数。它返回一个对象，对象里有新的绑定在给定命名空间值上的组件绑定辅助函数：","创建多个","即可。","及","同样，对于模块内部的","启用了命名空间的","命名空间","和","在","在一个","在命名空间模块内访问全局内容（global","在注册一个新","在这个模块中，","在这个模块的","如果你希望使用全局","如果你开发的插件（plugin）提供了模块并允许用户将其添加到","如果希望你的模块具有更高的封装度和复用性，你可以通过添加","如果我们使用一个纯对象来声明模块的状态，那么这个状态对象会通过引用被共享，导致状态对象被修改时","实际上这和","对于模块内部的","对于这种情况，你可以将模块的空间名称字符串作为第一个参数传递给上述函数，这样所有绑定都会自动将该模块作为上下文。于是上面的例子可以简化为：","对象就有可能变得相当臃肿。","对象是模块的局部状态","对象的属性传入","属性不会对其产生影响","属性以访问根","属性后不需要修改模块内的代码。","嵌套模块","带命名空间的绑定函数","当使用","或","或提交","或模块间数据互相污染的问题。","把空间名字添加到插件模块的类型（type）中去","插件函数","插件可以通过在","插件就是通过动态注册模块将","支持）：","方法注册模块：","时声明的模块）。","时，为了在服务端渲染中避免有状态的单例)","时，你很有可能想保留过去的","是同样的问题。因此解决办法也是相同的——使用一个函数来声明模块状态（仅","是注册在全局命名空间的——这样使得多个模块能够对同一","暴露出来，根节点状态则为","有时我们可能需要创建一个模块的多个实例，例如：","来动态卸载模块。注意，你不能使用此方法卸载静态模块（即创建","模块内容（modul","模块内的状态已经是嵌套的了，使用","模块动态注册","模块动态注册功能使得其他","模块的局部状态","模块重用","注册嵌套模块","注册模块","然后返回","由于使用单一状态树，应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时，store","的方式使其成为命名空间模块。当模块被注册后，它的所有","的状态","的第四个参数来调用","等等...","管理状态。例如，vuex","组件内的","结合在一起，实现应用的路由状态管理。","给插件开发者的注意事项","继承父模块的命名空间","而且，你可以通过使用","若需要在全局命名空间内分发","被局部化了","访问模块的状态。","这些函数来绑定命名空间模块时，写起来可能比较繁琐：","这里的","进一步嵌套命名空间","选项将其归档：store.registermodule('a',","选项是","通过插件的参数对象得到空间名称","都会自动根据模块注册的路径调整命名。例如：","默认情况下，模块内部的"],"structure.html":["#","...","action","actions.j","action、mut","api","app.vu","cart.j","compon","getter","index.html","index.j","main.j","modul","mutat","mutations.j","products.j","store","vuex","│","└──","├──","产品模块","分割到单独的文件。","只要你遵守以上规则，如何组织代码随你便。如果你的","和","对于大型应用，我们会希望把","对象中。","并不限制你的代码结构。但是，它规定了一些需要遵守的规则：","应用层级的状态应该集中到单个","异步逻辑都应该封装到","我们组装模块并导出","抽取出api请求","提交","文件太大，只需将","是更改状态的唯一方法，并且这个过程是同步的。","根级别的","的地方","相关代码分割到模块中。下面是项目结构示例：","请参考购物车示例。","购物车模块","里面。","项目结构"],"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`","browserifi","browserify，让构建工具帮我们处理：","collapsed:","consol","console,","const","createlogg","createlogger({","createplugin","createvuexlogger。","createwebsocketplugin","createwebsocketplugin(socket)","data","data)","default","defineplugin","devtools，你可能不需要此插件。","envifi","export","false,","false。","filter","function","import","logger","logger:","mutat","mutation.payload)","mutation.typ","mutations,","mutationtransform","mutation，插件可以用来同步数据源到","myplugin","mypluginwithsnapshot","new","nextstat","nextstate...","payload","plugin","plugins:","prevstat","process.env.node_env","return","socket.emit('update',","socket.on('data',","state","state)","state,","state.subtre","stateafter)","statebefore,","store","store.commit('receivedata',","store.subscribe((mutation,","store.subscribe(mut","store。例如，同步","store（下面是个大概例子，实际上","transform","true","type,","vue","vuex","vuex.store({","webpack","websocket","{","}","})","},","上面插件会默认启用。在发布阶段，你需要使用","为","之后调用","作为唯一参数：","使","例如，只返回指定的子树","保存状态，用于下一次","内置","函数有几个配置项：","初始化后调用","即可","和","在开始记录之前转换状态","在插件中不允许直接修改状态——类似于组件，只能通过提交","在插件内提交","如果正在使用","实现，默认为","对象","当","快照","我们可以按任意方式格式化","或","或者是","按照","接受","插件","插件会生成状态快照，所以仅在开发环境使用。","插件就是一个函数，它接收","数据源到","方法可以有更多选项来完成复杂任务）：","日志插件还可以直接通过","是个","有时候插件需要获得状态的“快照”，比较改变的前后状态。想要实现这项功能，你需要对状态对象进行深拷贝：","来触发变化。","标签引入，它会提供全局方法","格式记录","每次","比较","然后像这样使用：","生成","生成状态快照的插件应该只在开发阶段使用，使用","的","的格式为","的钩子。vuex","自动展开记录的","自定义","自带一个日志插件用于一般的调试:","若","要注意，logger","选项，这个选项暴露出每次","通过提交","需要被记录，就让它返回","顺便，`mutation`"],"strict.html":["!==","'production'","...","//","=","const","mutat","new","process.env.node_env","store","strict:","true","true：","vuex.store({","})","不要在发布环境下启用严格模式！严格模式会深度监测状态树来检测不合规的状态变更——请确保在发布环境下关闭严格模式，以避免性能损失。","严格模式","函数引起的，将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。","在严格模式下，无论何时发生了状态变更且不是由","开发环境与发布环境","开启严格模式，仅需在创建","的时候传入","类似于插件，我们可以让构建工具来处理这种情况："],"forms.html":["()","(e)","(state,","(value)","+","...","...mapstate({","//","=","=>","action:","chang","computed:","e.target.value)","input","messag","message)","message:","methods:","model","mutat","mutations:","obj","obj.message。在严格模式中，由于这个修改不是在","return","set","setter","state","state.obj.messag","store","this.$store.commit('updatemessage',","this.$store.state.obj.messag","updatemessag","v","value)","value，然后侦听","vuex","{","}","})","},","上使用","下面是","中很有用的特性。另一个方法是使用带有","中绑定","事件，在事件回调中调用","会比较棘手：","会试图直接修改","假设这里的","函数中执行的,","函数：","双向绑定的计算属性","局部状态”要啰嗦得多，并且也损失了一些","当在严格模式中使用","必须承认，这样做比简单地使用“v","或者","时，在属于","是在计算属性中返回的一个属于","用“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,","({","*/","+","...","...args)",".babelrc）:","/*","//","/\\.js$/,","/node_modules/","0","0)","1,","100)","2,","3,","=","===","=>",">=","[","[],","]","])","],","__dirname,","`mutations`","action","action({","actions.j","actions.spec.j","actionsinjector","actionsinjector({","api","api。当测试","api，因此你可以直接用","args,","bundle.j","bundle.js'","bundle。","catch","category:","cb([","chai","commit","commit('receive_products',","commit('request_products')","commit,","const","count","count++","count:","default","describe('actions',","describe('getters',","describe('mutations',","dev","dispatch","documentation。","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","it('filteredproducts',","it('getallproducts',","it('increment',","karma","loader","loader!./actions')","loader!./test.js'。","loader!babel","loader',","loader:","loaders:","loaders。","loader。","localhost:8080/webpack","mocha","mock","module.export","module:","mutaion","mutat","mutations.j","mutations.spec.j","mutation，并且使用","new","node","output:","path:","payload)","payload:","product.categori","products)","products:","requir","require('inject","respons","result","return","server/test","server。","settimeout(()","shop","shop.getproducts(product","state","state,","state.count++","state.products.filter(product","store","store.j","test","test:","testact","testaction(actions.getallproducts,","title:","tri","type:","vue","vuex","vuex.stor","vuex.store({","webpack","webpack.config.j","webpack在真实浏览器环境中进行测试。","{","{},","}","})","},","一样直截了当。","下面是一个测试异步","下面是用","中执行。换种方式，你也可以用","中执行测试","中的","作为命名输出对象","使用","依赖的模块工厂","依赖，可以用","创建以下","创建模块","包含很复杂的计算过程，很有必要测试它们。getter","取个变量名然后把它输出去：","和","和参数调用","在","在浏览器中执行测试","在浏览器中测试","处理之后这些测试应该不依赖任何浏览器","如果你的","安装","应对起来略微棘手，因为它们可能需要调用外部的","应用","很容易被测试，因为它们仅仅是一些完全依赖参数的函数。这里有一个小技巧，如果你在","我们主要想针对","或","打包测试文件。","打包这些测试文件然后在","执行测试","把上述","改成","文件中定义了","断言结果","服务回应","服务层——例如，我们可以把","检查是否没有","模块功能默认输出了","模拟","模拟提交","模拟状态","测试","测试一个","然后：","用以上配置启动","用指定的","用模拟的","的例子（实际上你可以用任何你喜欢的测试框架）：","的例子：","的实例，那么你仍然可以给","的时候，我们需要增加一个","的测试与","的示例：","的结果","的辅助函数","编写正确，经过合理地","获取","被","解构","访问","详见","语法处理内联","调用。为了便于解决","调用抽象成服务，然后在测试文件中用","返回一个允许我们注入","进行单元测试。","配置中的","配置（配置好"],"hot-reload.html":["'./modules/a'","'./modules/a'],","'./mutations'","'vue'","'vuex'","()","(module.hot)","...","//","6","=","=>","`.default`","a:","action","api，vuex","babel","browserifi","const","counter","getter。你也可以在","hmr","hot","hot。","import","modul","module.hot.accept(['./mutations',","modulea","modules:","mutat","mutations,","mutations:","mutation、module、act","new","newmodulea","newmut","newmutations,","replac","require('./modules/a').default","require('./mutations').default","state","state,","store","store.hotupdate()","store.hotupdate({","store.j","vue","vue.use(vuex)","vuex","vuex.store({","webpack","{","}","})","中使用","使","使用","加载新模块","参考热重载示例","和","和模块，你需要使用","因为","对于","成为可热重载模块","插件。","支持在开发过程中热重载","方法：","热重载","的","的模块编译格式问题，这里需要加上","获取更新后的模块"],"api.html":["'vuex'","...","...option","//","2.5.0","=","=>","[key:","[type:","`store.commit`","`store.dispatch`","`store.getters`","`store.getters`，只存在于模块中","`store.state`，只存在于模块中","`store.state`，若在模块中则为局部状态","action","actions?,","action。handl","action。opt","action。处理函数总是接受","action。详细介绍","action。返回一个解析所有被触发的","any,","api","array","array)","array,","boolean","cb:","commit(mutation:","commit(type:","commit,","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?,","getter，gett","getter，只读。","hotupdate(newoptions:","import","key","key:","map:","mapactions(namespace?:","mapgetters(namespace?:","mapmut","mapmutations(namespace?:","mapstate(namespace?:","mapstate、mapgetters、mapact","modul","module,","module:","modules?","mutat","mutations,","mutation。handl","mutation。opt","mutation。详细介绍","mutation（用于外部地数据持久化、记录或调试）或者提交","mutation，处理函数总是接受","namespaced?,","new","object","object)","object):","object,","option","options?:","payload?:","plugin","preservestate:","promise。详细介绍","registermodule(path:","replacestate(state:","root:","rootgett","rootstat","rootstate,","state","state)","state,","state。用于服务端渲染。","state。这在你想要重用","store","store.gett","store.getters。","store.st","store.subscribe((mutation,","store.subscribeaction((action,","store，大概长这样：","strict","string","string):","string,","string]:","subscribe(handler:","subscribeaction(handler:","true","true，它允许在命名空间模块里分发根的","true，它允许在命名空间模块里提交根的","unregistermodule(path:","vm.$watch","vue","vuex","vuex.stor","vuex.store({","watch(getter:","websocket","{","|","}","})","},","一个数组，包含应用在","上注册","上的插件方法。这些插件直接接收","与根模块的选项一样，每个模块也包含","中的状态。详细介绍","为组件创建计算属性以返回","以允许保留之前的","会在每个","作为唯一参数，可以监听","作为第一个参数（如果定义在模块中，则为模块的局部状态），payload","作为第一个参数，payload","作为第一个参数，其","作为第二个参数。最后接收一个可选的对象参数表示","作为第二个参数（可选）。","使","关联到","分发","分发的时候调用并接收","创建基于命名空间的组件绑定辅助函数。其返回一个包含","创建组件方法分发","创建组件方法提交","包含了子模块的对象，会被合并到","卸载一个动态模块。详细介绍","参考","只会接收","可以包含","同样指向局部状态。","后的状态作为参数：","和","和经过","响应式地监测一个","在","处理函数以外修改","处理器的","如果你传入返回一个对象的函数，其返回的对象会被用作根","如果在模块中定义则为模块的局部状态","完成后调用，接收","实例属性","实例方法","实例的根","对象。详细介绍","对象包含以下属性：","对象，尤其是对于重用","当定义在一个模块里时会特别一些：","或","所有","接收","描述和当前的","提交","文档","新增","方法接受以下参数：","方法的参数。","方法的返回值，当值改变时调用回调函数。getter","暴露为","暴露出注册的","替换","来说非常有用。详细介绍","构造器选项","某些观察者）","根状态，只读。","注册一个动态模块。详细介绍","注册的","注册监听","热替换新的","的","的对象。它们都已经绑定在了给定的命名空间上。详细介绍","的局部状态作为第一个参数，而不是根状态，并且模块","的根状态。模块的","的根状态，仅用状态合并或时光旅行调试。","的返回值。详细介绍","第一个参数是可选的，可以是一个命名空间字符串。详细介绍","等同于","类型:","组件绑定的辅助函数","要停止监测，直接调用返回的处理函数。","订阅","该功能常用于插件。详细介绍","详细介绍","这两个参数：","进入严格模式，在严格模式下，任何","选项。模块的状态使用","通常用于插件。详细介绍","都会抛出错误。","里可以有","默认值:","（用于内部数据，例如"]},"length":17},"tokenStore":{"root":{"0":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"1":{"0":{"0":{"0":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188}}}},"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.005865102639296188}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},"2":{"3":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},")":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}},"docs":{}},"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}},"s":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"2":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}},"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":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"docs":{}}},"5":{"docs":{},".":{"0":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"docs":{}}},"docs":{}}},"3":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},"r":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.003205128205128205}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},".":{"0":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}},"docs":{}}},"4":{"docs":{},"t":{"docs":{},"h":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}}},"6":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":10.049853372434018},"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"structure.html":{"ref":"structure.html","tf":0.02857142857142857},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.01675977653631285},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.015151515151515152}},"s":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.020527859237536656},"modules.html":{"ref":"modules.html","tf":0.007518796992481203}}},"i":{"docs":{},"n":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"(":{"docs":{},"{":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}},"'":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"，":{"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.008797653958944282}}},"b":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188}}},"(":{"docs":{},"{":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},"。":{"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}}}}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"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}}}},"p":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"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.005865102639296188},"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":5.002525252525253}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}},"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.003076923076923077}}}}}}}}}}}}}}}}}}}}},",":{"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.0049504950495049506},"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.029411764705882353},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.002136752136752137},"structure.html":{"ref":"structure.html","tf":5.016666666666667}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"s":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}}}}}}}}},":":{"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.014285714285714285}}}}},",":{"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}}}}}}}}},"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":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"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}}}}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"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.0010683760683760685}}}}},"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}}}}}}}}}}}},"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.00196078431372549},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}}}}}}}},"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}}}}},"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}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"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}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"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}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.012626262626262626}},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"o":{"docs":{},"w":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"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},"modules.html":{"ref":"modules.html","tf":0.005341880341880342},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.012903225806451613}},":":{"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.0016366612111292963}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.004838709677419355}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}},"s":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}},"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}}}}},"u":{"docs":{},"m":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}},"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.008333333333333333}}}}},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.0058823529411764705},"actions.html":{"ref":"actions.html","tf":0.006564551422319475},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}},"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.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.005865102639296188}}}}}}}},"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.005050505050505051}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.008797653958944282}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"，":{"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.006015037593984963},"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}}}}}},"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.002136752136752137},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"core-concepts.html":{"ref":"core-concepts.html","tf":5.15}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"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}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"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}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.005050505050505051}},".":{"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.002932551319648094}},"(":{"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.002932551319648094}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"：":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}},"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.011764705882352941}}}}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},")":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.015037593984962405},"plugins.html":{"ref":"plugins.html","tf":0.0299625468164794},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"testing.html":{"ref":"testing.html","tf":0.027932960893854747},"hot-reload.html":{"ref":"hot-reload.html","tf":0.039603960396039604},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00980392156862745}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}},"i":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}},"r":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"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}}}},"d":{"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.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"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":{},"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.014634146341463415},"mutations.html":{"ref":"mutations.html","tf":0.011764705882352941},"actions.html":{"ref":"actions.html","tf":0.020527859237536656},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.008086253369272238},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"api.html":{"ref":"api.html","tf":0.004838709677419355}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"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.002932551319648094}}}}}}}},"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}}}}}}}}}}}}}}}},"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.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}},"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.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}},"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.002932551319648094}}}}}}}}}}}}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}},"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.002932551319648094}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.002136752136752137}}},"。":{"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}}}}}}}}}}}}}}}}}}}}}}}},"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.014285714285714285},"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.0049504950495049506}}},"?":{"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.006564551422319475},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}},"u":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"forms.html":{"ref":"forms.html","tf":0.021739130434782608},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.024752475247524754},"getters.html":{"ref":"getters.html","tf":0.015228426395939087},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"forms.html":{"ref":"forms.html","tf":0.020618556701030927}}}}},"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.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"i":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"a":{"docs":{},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"p":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}},"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.010309278350515464},"state.html":{"ref":"state.html","tf":0.019801980198019802},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"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.024752475247524754},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},"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.0049504950495049506}}}}}}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"+":{"docs":{},"+":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031746031746031744}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"e":{"docs":{},"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}}}}},"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.0031446540880503146}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"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.010309278350515464},"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}}}}}}},"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":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"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.002932551319648094},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}}}}},"a":{"docs":{},"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}}}}}}}},"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}}}},"c":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"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}}}}}},"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":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"structure.html":{"ref":"structure.html","tf":0.016666666666666666}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}},"e":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00931098696461825}}}}}}}}}},"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.0030075187969924814}},"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.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"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.003745318352059925}},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"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.0032258064516129032}}}}}}}},"b":{"docs":{},"(":{"docs":{},"[":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"forms.html":{"ref":"forms.html","tf":5.007246376811594}},"a":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.008086253369272238}}}}},"c":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"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.0030075187969924814}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}},"l":{"docs":{},"s":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"e":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"。":{"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}}}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}}},"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}}}},"i":{"docs":{},"n":{"docs":{},"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.0023584905660377358},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}},"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.003745318352059925}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0074487895716946}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}},"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}}}}}}}},"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.010309278350515464},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"、":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"x":{"docs":{},"、":{"docs":{},"和":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}}}}}},"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.0030075187969924814},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.010101010101010102}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"api.html":{"ref":"api.html","tf":0.005050505050505051}}},".":{"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.005050505050505051}}}}}}}}},"r":{"docs":{},"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}}}}}}}}}}}}},"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}}}}}}}}}}}}}}}}}},"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":10.050761421319796},"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.01303538175046555},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":0.020202020202020204}},"s":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"api.html":{"ref":"api.html","tf":0.007575757575757576}}},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},".":{"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.005076142131979695}}}}}}}}}}}}}}}}}},".":{"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.0015037593984962407}}}}}},"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.0015037593984962407}}}}}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.015228426395939087},"modules.html":{"ref":"modules.html","tf":0.010526315789473684}}},"[":{"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.0015037593984962407}}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"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":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}},"'":{"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.005076142131979695}}}}}}}}}}},"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.002932551319648094}}}}}}}}},"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.002932551319648094}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}},"i":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}},"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.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"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.004273504273504274},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}}}},"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}}}}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"o":{"docs":{},"w":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"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.008064516129032258}},",":{"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}}}}},"o":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}},"。":{"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.0026954177897574125}}}}},"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.015873015873015872}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.015873015873015872}},"@":{"2":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}},"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.009900990099009901}}}},"y":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"installation.html":{"ref":"installation.html","tf":0.031746031746031744},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"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.0010683760683760685},"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}}}}}}},"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}}}}},"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}}}}}}}},"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.004878048780487805}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.015384615384615385},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},".":{"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}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"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.0026954177897574125}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}},"e":{"docs":{},"x":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0047169811320754715},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}}},"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}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"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.031746031746031744},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.0111731843575419},"hot-reload.html":{"ref":"hot-reload.html","tf":0.039603960396039604},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"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.0026954177897574125}},"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}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}},"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}}}}}},")":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.02030456852791878},"testing.html":{"ref":"testing.html","tf":0.00931098696461825}}}},"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.0015037593984962407}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"strict.html":{"ref":"strict.html","tf":5.032967032967033},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.02197802197802198},"forms.html":{"ref":"forms.html","tf":0.014492753623188406}}},"l":{"docs":{"forms.html":{"ref":"forms.html","tf":0.041237113402061855}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":10.003007518796993},"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"testing.html":{"ref":"testing.html","tf":0.004909983633387889},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.007575757575757576}},"a":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802}}},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.01652892561983471}}},"?":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},"'":{"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.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"api.html":{"ref":"api.html","tf":0.0064516129032258064}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"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.009900990099009901}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.007518796992481203},"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004511278195488722}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},")":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}}}}}}},"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.0148975791433892}},"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.0074487895716946}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"mutations.html":{"ref":"mutations.html","tf":10.08},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"structure.html":{"ref":"structure.html","tf":0.02857142857142857},"plugins.html":{"ref":"plugins.html","tf":0.033707865168539325},"strict.html":{"ref":"strict.html","tf":0.029411764705882353},"forms.html":{"ref":"forms.html","tf":0.020618556701030927},"testing.html":{"ref":"testing.html","tf":0.027932960893854747},"hot-reload.html":{"ref":"hot-reload.html","tf":0.0297029702970297},"api.html":{"ref":"api.html","tf":0.020202020202020204}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"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.0015037593984962407}}},"s":{"docs":{},".":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},":":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.018461538461538463},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},",":{"docs":{"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.003745318352059925},"strict.html":{"ref":"strict.html","tf":0.01098901098901099},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985}}}}}},":":{"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.003745318352059925}}}}}}}}}}},"。":{"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}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.009433962264150943},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.0087527352297593},"modules.html":{"ref":"modules.html","tf":0.004273504273504274}}}}}}},"c":{"docs":{},"h":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}}}},"a":{"docs":{},"i":{"docs":{},"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}}}}}}}}}}}}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}}}},"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.012578616352201259},"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}}}},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0047169811320754715},"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.024752475247524754}},"e":{"docs":{},"(":{"docs":{},"[":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"{":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"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.0025252525252525255}}}}}}}}}}}}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"、":{"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.015228426395939087}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"(":{"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.0025252525252525255}}}}}}}}}}}}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.010101010101010102}}}},"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.004838709677419355},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}},"s":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}},".":{"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}}}}}}},"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.010309278350515464}},"e":{"docs":{},")":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.020618556701030927}}}}}}}}},"i":{"docs":{},"x":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}},"y":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"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.003745318352059925}}}}}}}}}}}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}}},"n":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"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.004878048780487805}}}}},"d":{"docs":{},"e":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},"_":{"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.031746031746031744}}}}}}}}}}}}}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}},"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.008333333333333333}}}},"e":{"docs":{},"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.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"plugins.html":{"ref":"plugins.html","tf":0.0149812734082397},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802}}}}}}}},"u":{"docs":{},"t":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}},"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.00749063670411985}},"e":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.09523809523809523}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}},"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.0030075187969924814},"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.006015037593984963}}},"?":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}}}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"modules.html":{"ref":"modules.html","tf":0.008547008547008548},"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0149812734082397}}},",":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}},".":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}}},"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}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"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.0010683760683760685}}}}}},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"s":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"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.0015037593984962407}}}}}}}},"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}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"strict.html":{"ref":"strict.html","tf":0.02197802197802198}},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"!":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}},"s":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},".":{"docs":{},"j":{"docs":{"structure.html":{"ref":"structure.html","tf":0.014285714285714285}}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}},"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}}}},"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.00392156862745098},"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":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}},"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}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"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.002932551319648094}}}}}}}}}}}},":":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"，":{"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}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"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.00749063670411985},"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}}}}}}}}},"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.0015037593984962407}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}}},"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.011235955056179775}}}}}}}},"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}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"/":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}}}}},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"s":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}}}}}}}},"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}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"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.00186219739292365}}}}},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00784313725490196},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"plugins.html":{"ref":"plugins.html","tf":0.011235955056179775},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},")":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},".":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154}}}}}}}}},"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.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}}}}}},"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}}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}}}}}},"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}}}}},"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}}}}},"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.011764705882352941}}}}},"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}}}},"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.00186219739292365},"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.00186219739292365}}}}}}}},".":{"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.009900990099009901}}}}}}}}}}}}}}}}}}}},"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.009900990099009901}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"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.010309278350515464}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}}}},"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.009900990099009901},"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.0025252525252525255}}}}}}}}}}}}}}}}}}},"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.002932551319648094}}}},"d":{"docs":{},".":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}},"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.00186219739292365}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.025380710659898477},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"plugins.html":{"ref":"plugins.html","tf":0.0149812734082397},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"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}}}}}}},"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}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}},"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}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}},"n":{"docs":{},"d":{"docs":{},"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}}}}}}}}}},"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}}}}}}},"u":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"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.0015037593984962407}}}}}}}}}}}}}}},"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.014516129032258065}},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"api.html":{"ref":"api.html","tf":0.005050505050505051}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"api.html":{"ref":"api.html","tf":0.005050505050505051}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"e":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"e":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}}},"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.020618556701030927},"getting-started.html":{"ref":"getting-started.html","tf":0.023529411764705882},"core-concepts.html":{"ref":"core-concepts.html","tf":0.07692307692307693},"state.html":{"ref":"state.html","tf":10.01980198019802},"getters.html":{"ref":"getters.html","tf":0.015228426395939087},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.013533834586466165},"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.020618556701030927},"testing.html":{"ref":"testing.html","tf":0.00931098696461825},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.022727272727272728}},",":{"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.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.010101010101010102}}},".":{"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.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}},"+":{"docs":{},"+":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},"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.005076142131979695}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.020618556701030927}}}}}}}}}}}},"a":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}},"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.0015037593984962407}}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.009022556390977444}}},";":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985},"api.html":{"ref":"api.html","tf":0.005050505050505051}}},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}},"，":{"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}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"g":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"strict.html":{"ref":"strict.html","tf":5.054945054945055},"forms.html":{"ref":"forms.html","tf":0.014492753623188406},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"l":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},":":{"docs":{"strict.html":{"ref":"strict.html","tf":0.08823529411764706}}}}},"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.005050505050505051}},")":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.015151515151515152}}},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0064516129032258064}}},"]":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.007575757575757576}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"structure.html":{"ref":"structure.html","tf":5.025}},"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.09411764705882353},"state.html":{"ref":"state.html","tf":0.034653465346534656},"getters.html":{"ref":"getters.html","tf":0.030456852791878174},"mutations.html":{"ref":"mutations.html","tf":0.015384615384615385},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"modules.html":{"ref":"modules.html","tf":0.012030075187969926},"structure.html":{"ref":"structure.html","tf":0.05714285714285714},"plugins.html":{"ref":"plugins.html","tf":0.03745318352059925},"strict.html":{"ref":"strict.html","tf":0.08823529411764706},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.03787878787878788},"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.00975609756097561},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"api.html":{"ref":"api.html","tf":0.00967741935483871}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232}},"(":{"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.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154}}}}}}}}}}}}},"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.003745318352059925}}}}}}}}}}}}}}}},"{":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}}},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.01485148514851485}},"，":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"我":{"docs":{},"们":{"docs":{},"想":{"docs":{},"要":{"docs":{},"更":{"docs":{},"明":{"docs":{},"确":{"docs":{},"地":{"docs":{},"追":{"docs":{},"踪":{"docs":{},"到":{"docs":{},"状":{"docs":{},"态":{"docs":{},"的":{"docs":{},"变":{"docs":{},"化":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"约":{"docs":{},"定":{"docs":{},"能":{"docs":{},"够":{"docs":{},"让":{"docs":{},"你":{"docs":{},"的":{"docs":{},"意":{"docs":{},"图":{"docs":{},"更":{"docs":{},"加":{"docs":{},"明":{"docs":{},"显":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"你":{"docs":{},"在":{"docs":{},"阅":{"docs":{},"读":{"docs":{},"代":{"docs":{},"码":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"能":{"docs":{},"更":{"docs":{},"容":{"docs":{},"易":{"docs":{},"地":{"docs":{},"解":{"docs":{},"读":{"docs":{},"应":{"docs":{},"用":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},"改":{"docs":{},"变":{"docs":{},"。":{"docs":{},"此":{"docs":{},"外":{"docs":{},"，":{"docs":{},"这":{"docs":{},"样":{"docs":{},"也":{"docs":{},"让":{"docs":{},"我":{"docs":{},"们":{"docs":{},"有":{"docs":{},"机":{"docs":{},"会":{"docs":{},"去":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"些":{"docs":{},"能":{"docs":{},"记":{"docs":{},"录":{"docs":{},"每":{"docs":{},"次":{"docs":{},"状":{"docs":{},"态":{"docs":{},"改":{"docs":{},"变":{"docs":{},"，":{"docs":{},"保":{"docs":{},"存":{"docs":{},"状":{"docs":{},"态":{"docs":{},"快":{"docs":{},"照":{"docs":{},"的":{"docs":{},"调":{"docs":{},"试":{"docs":{},"工":{"docs":{},"具":{"docs":{},"。":{"docs":{},"有":{"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}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"b":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"m":{"docs":{},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}},"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.0015037593984962407}},"e":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}}}}}}}}}}}}}}},"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.00749063670411985},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"api.html":{"ref":"api.html","tf":0.005050505050505051}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"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":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}},"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.005076142131979695}}}},"docs":{}}}}}}}}}}}}}},"。":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"actions.html":{"ref":"actions.html","tf":0.01466275659824047}},"(":{"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.002932551319648094}}}}}}}}}}}}}}}}}}},"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.002932551319648094}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}},"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.0015037593984962407}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"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.0015037593984962407}}}}}}}}}}}}},"[":{"docs":{},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.0015037593984962407}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.009900990099009901}}},"{":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},":":{"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.00392156862745098}}}},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"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":{"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}}}}}}}}}}},"p":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}},"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.015873015873015872},"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.002932551319648094}},"s":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}},"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}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}},"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.0031446540880503146}},",":{"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.00392156862745098},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"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}}}}}}},"n":{"docs":{},"c":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"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.00392156862745098},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}}},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"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.0016366612111292963},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"i":{"docs":{},"c":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0032733224222585926}}}}}},"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.010309278350515464}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}},"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.0032258064516129032}}}}}}},"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.00437636761487965},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},".":{"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.002932551319648094}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"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.009433962264150943},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"actions.html":{"ref":"actions.html","tf":0.002188183807439825}},"e":{"docs":{},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}},"s":{"docs":{},"t":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"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}}},"f":{"docs":{},"i":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}},"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}}}}}}}}}},"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.0010683760683760685}},"?":{"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.0031446540880503146}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}},"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":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"t":{"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},"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.0031446540880503146},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}}}}},"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.006153846153846154}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}},"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.003745318352059925}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}}}}}}},"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":{},"!":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"actions.html":{"ref":"actions.html","tf":0.00437636761487965}}}}}}},"r":{"docs":{},"e":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},"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.0025252525252525255}}}}}}}}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549},"actions.html":{"ref":"actions.html","tf":0.00437636761487965},"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356},"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"state.html":{"ref":"state.html","tf":0.01485148514851485}}}}}}}}},"r":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629}}}},"x":{"docs":{},"t":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.02030456852791878}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"modules.html":{"ref":"modules.html","tf":0.0010683760683760685},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}}}},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}},".":{"docs":{},"j":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"api.html":{"ref":"api.html","tf":0.014516129032258065}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011235955056179775}}}}}},"a":{"docs":{},"g":{"docs":{},"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}}}}}}}},"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.0049504950495049506}},"+":{"docs":{},"+":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}}}}}}}},"$":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}},"e":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"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.0049504950495049506}}}}}}},"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.005076142131979695}}}}}}}}}}}}}}}}}}},"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.010309278350515464}}}}}}}}}}}}}}}}}},"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.005076142131979695}}}}}}}}}}}}}}}}}}}}}}}},"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.003076923076923077}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}}},"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.020618556701030927}}}}}}}}}}}}}}}}}}}}}}}}},"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.002932551319648094}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}}}}}}}}}}}}}}}}},"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.0049504950495049506}}}}}}}}}}}}},":":{"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.00931098696461825}}}}}}},"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}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"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.003745318352059925}}}}}}}}},"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}}}}},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"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}}}}}},"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}}}}}},"e":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"modules.html":{"ref":"modules.html","tf":0.007518796992481203},"strict.html":{"ref":"strict.html","tf":0.029411764705882353},"api.html":{"ref":"api.html","tf":0.0025252525252525255},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004511278195488722}}},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}},"：":{"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}}}}}}}}}}}}}}}}}}}}},"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.005076142131979695}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}},"s":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"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":{},"r":{"docs":{},"n":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}}}},"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.00196078431372549}},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}}}}}}}},"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}}}},"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.0025252525252525255}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}},"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.020618556701030927}}}}}}}}}}}},",":{"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}}}}}},"v":{"docs":{"forms.html":{"ref":"forms.html","tf":0.020618556701030927}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"a":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"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}}}}}}},"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}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}},"a":{"docs":{"installation.html":{"ref":"installation.html","tf":0.023529411764705882},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"actions.html":{"ref":"actions.html","tf":0.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.003205128205128205},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"e":{"docs":{},"w":{"docs":{"intro.html":{"ref":"intro.html","tf":0.020618556701030927},"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}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031746031746031744},"intro.html":{"ref":"intro.html","tf":0.020618556701030927},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.009900990099009901},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"@":{"2":{"docs":{},".":{"5":{"docs":{},"+":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}}},"docs":{}}},"docs":{},">":{"docs":{},"=":{"2":{"docs":{},".":{"5":{"docs":{},"，":{"docs":{},"反":{"docs":{},"之":{"docs":{},"亦":{"docs":{},"然":{"docs":{},"。":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}}}}}},"docs":{}}},"docs":{}}}},"x":{"docs":{"./":{"ref":"./","tf":0.07407407407407407},"installation.html":{"ref":"installation.html","tf":0.07936507936507936},"intro.html":{"ref":"intro.html","tf":5.051546391752577},"getting-started.html":{"ref":"getting-started.html","tf":0.047058823529411764},"core-concepts.html":{"ref":"core-concepts.html","tf":0.15384615384615385},"state.html":{"ref":"state.html","tf":0.0297029702970297},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.015384615384615385},"modules.html":{"ref":"modules.html","tf":0.006015037593984963},"structure.html":{"ref":"structure.html","tf":0.02857142857142857},"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985},"strict.html":{"ref":"strict.html","tf":0.02197802197802198},"forms.html":{"ref":"forms.html","tf":0.030927835051546393},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.012626262626262626}},"?":{"docs":{"./":{"ref":"./","tf":0.029411764705882353},"intro.html":{"ref":"intro.html","tf":10.00314465408805}}},"@":{"3":{"docs":{},".":{"0":{"docs":{},"+":{"docs":{"./":{"ref":"./","tf":0.029411764705882353}}}},"docs":{}}},"docs":{},">":{"docs":{},"=":{"docs":{"./":{"ref":"./","tf":0.037037037037037035}}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.006289308176100629},"getting-started.html":{"ref":"getting-started.html","tf":0.004878048780487805},"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},".":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"core-concepts.html":{"ref":"core-concepts.html","tf":0.05},"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"api.html":{"ref":"api.html","tf":0.010101010101010102},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"plugins.html":{"ref":"plugins.html","tf":0.0149812734082397},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"testing.html":{"ref":"testing.html","tf":0.00186219739292365},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},":":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}}},"：":{"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":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941}}}},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"x":{"docs":{},")":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}},")":{"docs":{},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},"）":{"docs":{},"：":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}}}}}}},"j":{"docs":{"intro.html":{"ref":"intro.html","tf":0.030927835051546393}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"'":{"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.010309278350515464},"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}},":":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}},"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.007246376811594203},"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.010309278350515464}}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}},"，":{"docs":{},"然":{"docs":{},"后":{"docs":{},"侦":{"docs":{},"听":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}}}}},"s":{"docs":{},".":{"docs":{"strict.html":{"ref":"strict.html","tf":0.01098901098901099}}}},"m":{"docs":{},".":{"docs":{},"$":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"'":{"docs":{},"v":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},"x":{"docs":{},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"/":{"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.003745318352059925}}}}}}}}}}}}}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}},"#":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"'":{"docs":{"state.html":{"ref":"state.html","tf":0.009900990099009901}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00558659217877095}}}}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"'":{"docs":{},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.02030456852791878}}}}},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}},"/":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}},"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.009900990099009901}},"]":{"docs":{},",":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}},"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.005076142131979695}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}}}}},"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.005076142131979695}},",":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}}}}}}},"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.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}},"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.003076923076923077}}}}}}}}}}}},"/":{"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.0015037593984962407}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"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.0015037593984962407}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004511278195488722}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}}},"/":{"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.0015037593984962407}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}},"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.0015037593984962407}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00931098696461825}}}}}}}},"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.0015037593984962407}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},")":{"docs":{},";":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}},"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.00749063670411985},"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}}}}}}}}}},"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.003745318352059925}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"/":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"api.html":{"ref":"api.html","tf":0.0016129032258064516}},"/":{"docs":{"intro.html":{"ref":"intro.html","tf":0.030927835051546393},"getting-started.html":{"ref":"getting-started.html","tf":0.023529411764705882},"state.html":{"ref":"state.html","tf":0.04950495049504951},"getters.html":{"ref":"getters.html","tf":0.04568527918781726},"mutations.html":{"ref":"mutations.html","tf":0.04},"actions.html":{"ref":"actions.html","tf":0.0469208211143695},"modules.html":{"ref":"modules.html","tf":0.055639097744360905},"plugins.html":{"ref":"plugins.html","tf":0.056179775280898875},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"forms.html":{"ref":"forms.html","tf":0.030927835051546393},"testing.html":{"ref":"testing.html","tf":0.04283054003724395},"hot-reload.html":{"ref":"hot-reload.html","tf":0.04950495049504951},"api.html":{"ref":"api.html","tf":0.030303030303030304}}},"*":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}},"\\":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"$":{"docs":{},"/":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}},"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}}},"i":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getting-started.html":{"ref":"getting-started.html","tf":0.00975609756097561}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}}}}},"u":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0023584905660377358},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125},"strict.html":{"ref":"strict.html","tf":0.01098901098901099}},".":{"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.0032733224222585926}},"e":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"s":{"docs":{},"'":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"。":{"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}}}}}},"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}}}}},"o":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"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}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"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.003745318352059925},"hot-reload.html":{"ref":"hot-reload.html","tf":0.019801980198019802}}},"y":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"，":{"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.006015037593984963}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.015873015873015872},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}},"'":{"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}}}}}}}}}}}}}}}}}},"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}}}}}}}}}}}},"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.003745318352059925}}}}}}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},",":{"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.0016129032258064516}}}}}}}},"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}}}}}},"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}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"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}}}}}},"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.00186219739292365}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}},"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":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.011764705882352941},"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}},"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}}}}}}}}},"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}}}}}},"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.004511278195488722},"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.002932551319648094}},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}}},"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.0015037593984962407}}},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},":":{"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}}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}},"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.00186219739292365}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.02030456852791878}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"s":{"docs":{},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.01015228426395939}},":":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}}}}}}}}}}}},"?":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}},"(":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}},"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":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}},"m":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"。":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}},":":{"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.0015037593984962407}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}},"t":{"docs":{},"a":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"api.html":{"ref":"api.html","tf":0.0032258064516129032}},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}},"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":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}},"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}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"modules.html":{"ref":"modules.html","tf":0.004273504273504274},"api.html":{"ref":"api.html","tf":0.0032258064516129032}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358},"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"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}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"structure.html":{"ref":"structure.html","tf":0.008333333333333333},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.00931098696461825}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}},"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.002188183807439825},"modules.html":{"ref":"modules.html","tf":0.005341880341880342},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"api.html":{"ref":"api.html","tf":0.004838709677419355}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"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.00558659217877095}},"(":{"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.00186219739292365}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}},"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.00186219739292365}}}},"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.00186219739292365}}},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"[":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"]":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}},"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}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}},"e":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"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.008333333333333333},"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}}}}}}},"c":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}},"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.00186219739292365}}}}}}}}},"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}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}},"l":{"docs":{},"m":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}},":":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}},"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}}}}},"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":{},"i":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"y":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}}}}},"v":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}},"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.011764705882352941},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}},"，":{"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}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"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.0049504950495049506}}}}}}}}}}},"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}}}}}}},".":{"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.010309278350515464}}}}}}}}}}}}}}},"g":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"l":{"docs":{},"a":{"docs":{},"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":{},"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.003076923076923077}},"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}}}}}}},"s":{"docs":{},"t":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}},"e":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}},"k":{"docs":{},"e":{"docs":{},")":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"e":{"docs":{},"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}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146},"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.01078167115902965}},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"r":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}},"s":{"docs":{},".":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.00196078431372549}}}},"i":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}},"c":{"docs":{"structure.html":{"ref":"structure.html","tf":0.008333333333333333}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"state.html":{"ref":"state.html","tf":0.009433962264150943},"getters.html":{"ref":"getters.html","tf":0.00392156862745098},"modules.html":{"ref":"modules.html","tf":0.007478632478632479},"forms.html":{"ref":"forms.html","tf":0.007246376811594203},"api.html":{"ref":"api.html","tf":0.012903225806451613}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}}}}}}}},"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.00186219739292365}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"t":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}}},"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.0074487895716946}},"!":{"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.00186219739292365}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},"。":{"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.00186219739292365}}}}}}}},"'":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"s":{"docs":{},".":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"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.007246376811594203}}}},"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.0025252525252525255}}}}}}}}}},"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.00749063670411985},"testing.html":{"ref":"testing.html","tf":0.01303538175046555},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}},"'":{"docs":{"hot-reload.html":{"ref":"hot-reload.html","tf":0.008264462809917356}}},"在":{"docs":{},"真":{"docs":{},"实":{"docs":{},"浏":{"docs":{},"览":{"docs":{},"器":{"docs":{},"环":{"docs":{},"境":{"docs":{},"中":{"docs":{},"进":{"docs":{},"行":{"docs":{},"测":{"docs":{},"试":{"docs":{},"。":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}},"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":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.031746031746031744}}}}},"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.0023584905660377358}}}}}}},"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.007246376811594203}}}}}},"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.003076923076923077}}}}}}}}}}}},"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.003745318352059925}}}}}}}}}}}}}}}}}}}}}}},"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.020618556701030927},"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.009022556390977444},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.00931098696461825},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901}}},"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.011764705882352941},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},"。":{"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.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}},"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":{},"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.010309278350515464}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}},"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.00186219739292365}}}}}}}}}}}}}}}}}}}}}}}}}},"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.005076142131979695}}}}},"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}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941}}}}}}}},"t":{"docs":{},"x":{"docs":{},",":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}},"b":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.020527859237536656},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},"(":{"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.0015037593984962407}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}},"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":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}}}}},"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.009900990099009901}}}}}}}}}}}}},"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}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}},")":{"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.010309278350515464}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}},"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.0031446540880503146},"state.html":{"ref":"state.html","tf":0.0049504950495049506},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.00558659217877095}},"=":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.009230769230769232}}}},"`":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"state.html":{"ref":"state.html","tf":0.009900990099009901}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}},"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.005076142131979695}}}}}}}}}}}}}}}}}},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},"，":{"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.0025252525252525255}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"`":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{},",":{"docs":{"api.html":{"ref":"api.html","tf":0.0032258064516129032}}},"，":{"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}}}}}}}}}}}}}}}}}}}}}}}}},"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.0030075187969924814}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"`":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506}},",":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}}}},".":{"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.005076142131979695}}}}}}}}}}}},"$":{"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.006153846153846154}}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}}}}}}}}}}}},"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.005865102639296188}}}}},"b":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}},"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.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}},"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.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}},"{":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.008086253369272238}},"{":{"docs":{"state.html":{"ref":"state.html","tf":0.009900990099009901}}}},"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.003076923076923077}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"`":{"docs":{},"'":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}},"b":{"docs":{},"`":{"docs":{},"'":{"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.0015037593984962407}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"s":{"docs":{},"`":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},"`":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}},"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.002188183807439825}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0010683760683760685}}}}}}}}}},"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.0015037593984962407}}}}}}}}}}}}}}}},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"`":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}}}}}}}}}}},"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}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"`":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}}},"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.0026954177897574125}}}}}}}}}}}},".":{"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.009900990099009901}}}}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"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.0025252525252525255}}}}},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0074487895716946}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"state.html":{"ref":"state.html","tf":0.0023584905660377358}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},":":{"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}}}}}},"u":{"docs":{},"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.00186219739292365}}}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}},"b":{"docs":{},"j":{"docs":{"forms.html":{"ref":"forms.html","tf":0.010309278350515464}},"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.022727272727272728}},",":{"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.005050505050505051}}},":":{"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.020202020202020204}},":":{"docs":{"api.html":{"ref":"api.html","tf":0.010101010101010102}}}}}}},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"forms.html":{"ref":"forms.html","tf":0.007246376811594203}},"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.00196078431372549}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"api.html":{"ref":"api.html","tf":0.0016129032258064516}}}}}}}}}}}}}},"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}}}}}}}}}}},"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.004273504273504274},"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},".":{"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.0015037593984962407}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}},"?":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.015151515151515152}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002188183807439825}}}}}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"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":{},"r":{"docs":{},"i":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"intro.html":{"ref":"intro.html","tf":0.0031446540880503146}}}}}},"{":{"docs":{"intro.html":{"ref":"intro.html","tf":0.041237113402061855},"getting-started.html":{"ref":"getting-started.html","tf":0.03529411764705882},"state.html":{"ref":"state.html","tf":0.0594059405940594},"getters.html":{"ref":"getters.html","tf":0.08629441624365482},"mutations.html":{"ref":"mutations.html","tf":0.06461538461538462},"actions.html":{"ref":"actions.html","tf":0.07917888563049853},"modules.html":{"ref":"modules.html","tf":0.10526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.056179775280898875},"forms.html":{"ref":"forms.html","tf":0.09278350515463918},"testing.html":{"ref":"testing.html","tf":0.0856610800744879},"hot-reload.html":{"ref":"hot-reload.html","tf":0.04950495049504951},"api.html":{"ref":"api.html","tf":0.020202020202020204}},"{":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}}},"}":{"docs":{},")":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}},"}":{"docs":{"intro.html":{"ref":"intro.html","tf":0.030927835051546393},"getting-started.html":{"ref":"getting-started.html","tf":0.023529411764705882},"state.html":{"ref":"state.html","tf":0.04950495049504951},"getters.html":{"ref":"getters.html","tf":0.07614213197969544},"mutations.html":{"ref":"mutations.html","tf":0.052307692307692305},"actions.html":{"ref":"actions.html","tf":0.05278592375366569},"modules.html":{"ref":"modules.html","tf":0.06466165413533835},"plugins.html":{"ref":"plugins.html","tf":0.0299625468164794},"forms.html":{"ref":"forms.html","tf":0.07216494845360824},"testing.html":{"ref":"testing.html","tf":0.055865921787709494},"hot-reload.html":{"ref":"hot-reload.html","tf":0.039603960396039604},"api.html":{"ref":"api.html","tf":0.012626262626262626}},")":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"mutations.html":{"ref":"mutations.html","tf":0.018461538461538463},"actions.html":{"ref":"actions.html","tf":0.03812316715542522},"modules.html":{"ref":"modules.html","tf":0.016541353383458645},"plugins.html":{"ref":"plugins.html","tf":0.033707865168539325},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.024208566108007448},"hot-reload.html":{"ref":"hot-reload.html","tf":0.0297029702970297},"api.html":{"ref":"api.html","tf":0.007575757575757576}},"。":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},",":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464},"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.009900990099009901},"getters.html":{"ref":"getters.html","tf":0.01015228426395939},"mutations.html":{"ref":"mutations.html","tf":0.006153846153846154},"actions.html":{"ref":"actions.html","tf":0.017595307917888565},"modules.html":{"ref":"modules.html","tf":0.031578947368421054},"plugins.html":{"ref":"plugins.html","tf":0.011235955056179775},"forms.html":{"ref":"forms.html","tf":0.020618556701030927},"testing.html":{"ref":"testing.html","tf":0.01303538175046555},"api.html":{"ref":"api.html","tf":0.0025252525252525255}}},"}":{"docs":{"intro.html":{"ref":"intro.html","tf":0.010309278350515464}},"`":{"docs":{},",":{"docs":{"state.html":{"ref":"state.html","tf":0.009900990099009901}}}}},"]":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"`":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.005390835579514825}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0026954177897574125}}}}},"=":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"mutations.html":{"ref":"mutations.html","tf":0.012307692307692308},"actions.html":{"ref":"actions.html","tf":0.005865102639296188},"modules.html":{"ref":"modules.html","tf":0.016541353383458645},"plugins.html":{"ref":"plugins.html","tf":0.04119850187265917},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.03165735567970205},"hot-reload.html":{"ref":"hot-reload.html","tf":0.039603960396039604},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},">":{"docs":{"state.html":{"ref":"state.html","tf":0.009900990099009901},"getters.html":{"ref":"getters.html","tf":0.03553299492385787},"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.020527859237536656},"modules.html":{"ref":"modules.html","tf":0.010526315789473684},"plugins.html":{"ref":"plugins.html","tf":0.026217228464419477},"forms.html":{"ref":"forms.html","tf":0.010309278350515464},"testing.html":{"ref":"testing.html","tf":0.024208566108007448},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.005050505050505051}}},"=":{"docs":{},"=":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}}},">":{"docs":{"getting-started.html":{"ref":"getting-started.html","tf":0.011764705882352941},"getters.html":{"ref":"getters.html","tf":0.015228426395939087},"modules.html":{"ref":"modules.html","tf":0.022556390977443608}},"=":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"*":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}},"/":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}}}},".":{"docs":{},".":{"docs":{},".":{"docs":{"state.html":{"ref":"state.html","tf":0.01485148514851485},"getters.html":{"ref":"getters.html","tf":0.02030456852791878},"mutations.html":{"ref":"mutations.html","tf":0.012307692307692308},"actions.html":{"ref":"actions.html","tf":0.008797653958944282},"modules.html":{"ref":"modules.html","tf":0.031578947368421054},"structure.html":{"ref":"structure.html","tf":0.02857142857142857},"plugins.html":{"ref":"plugins.html","tf":0.00749063670411985},"strict.html":{"ref":"strict.html","tf":0.058823529411764705},"forms.html":{"ref":"forms.html","tf":0.030927835051546393},"testing.html":{"ref":"testing.html","tf":0.0037243947858473},"hot-reload.html":{"ref":"hot-reload.html","tf":0.009900990099009901},"api.html":{"ref":"api.html","tf":0.0025252525252525255}},"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.0049504950495049506},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814},"forms.html":{"ref":"forms.html","tf":0.010309278350515464}}},"'":{"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.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.00392156862745098}}}}}}}}}}},"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.003076923076923077}}},"{":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094},"modules.html":{"ref":"modules.html","tf":0.0030075187969924814}}},"{":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"'":{"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.0015037593984962407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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.003076923076923077}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"r":{"docs":{},"c":{"docs":{},")":{"docs":{},":":{"docs":{"testing.html":{"ref":"testing.html","tf":0.0016366612111292963}}}},"）":{"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.008264462809917356}}}}}}}}}},"]":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},")":{"docs":{"state.html":{"ref":"state.html","tf":0.0049504950495049506},"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"modules.html":{"ref":"modules.html","tf":0.004511278195488722},"testing.html":{"ref":"testing.html","tf":0.0037243947858473}},",":{"docs":{"mutations.html":{"ref":"mutations.html","tf":0.003076923076923077},"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"[":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695},"modules.html":{"ref":"modules.html","tf":0.0015037593984962407},"testing.html":{"ref":"testing.html","tf":0.00558659217877095}},"{":{"docs":{"getters.html":{"ref":"getters.html","tf":0.005076142131979695}}},"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.003076923076923077}}}}}}}}}}}}}}}},".":{"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.002932551319648094}}}}}}}}}}}}}}}}}}}}}},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}},"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.003745318352059925}}}}}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"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.003745318352059925}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"]":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.0025252525252525255}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},":":{"docs":{"api.html":{"ref":"api.html","tf":0.005050505050505051}}}}}}}},")":{"docs":{"actions.html":{"ref":"actions.html","tf":0.002932551319648094}}},"%":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}},"|":{"docs":{"api.html":{"ref":"api.html","tf":0.022727272727272728}},"|":{"docs":{"modules.html":{"ref":"modules.html","tf":0.0015037593984962407}}}},"#":{"docs":{"structure.html":{"ref":"structure.html","tf":0.08571428571428572}}},"│":{"docs":{"structure.html":{"ref":"structure.html","tf":0.04285714285714286}}},"└":{"docs":{},"─":{"docs":{},"─":{"docs":{"structure.html":{"ref":"structure.html","tf":0.07142857142857142}}}}},"├":{"docs":{},"─":{"docs":{},"─":{"docs":{"structure.html":{"ref":"structure.html","tf":0.12857142857142856}}}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.011235955056179775},"strict.html":{"ref":"strict.html","tf":0.029411764705882353}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"?":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.003745318352059925}}},"_":{"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.003745318352059925}}}}}},"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.003745318352059925}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"testing.html":{"ref":"testing.html","tf":0.00186219739292365}}}}}}}}}}}},"严":{"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":{"./":{"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":{"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":{},"嵌":{"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":{"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":{"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":{},"换":{"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":{},"个":{"docs":{},"组":{"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":{"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":{"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":{"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":{},"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":{"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":{"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":{"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":{},"账":{"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":{"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":{},"此":{"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":{},"载":{"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":{"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":{"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":{"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":{},"多":{"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":{"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}}}}}}}},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"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}}}}}}}}}}}}},"length":4685},"corpusTokens":["!==","\"ablacklistedmutation\"","\"after\"","\"before\"","\"getters\"","\"increment\"","\"inject\"","\"one","\"retrieve\"","\"singl","\"snapshots\"","\"state","\"store\"","\"view\",","\"vuex","\"when","#","%","'#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');","'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","()","(action,","(cb)","(commit)","(context)","(count","(ctx,","(declar","(e)","(e.g.","(enabl","(error)","(especi","(expectedmutations.length","(for","(handler)。这个回调函数就是我们实际进行状态更改的地方，并且它会接受","(id)","(module.hot)","(mutation)","(mutation,","(mutation.typ","(option","(payload)","(requir","(socket)","(ssot)”而存在。这也意味着，每个应用将仅仅包含一个","(state","(state)","(state)。vuex","(state,","(store)","(support","(thi","(togeth","(type)","(type,","(value)","(which","(will","(you","({","(例如当",")","*","*/","+","+=","...","...args)","...mapactions('some/nested/module',","...mapactions([","...mapactions({","...mapgetters([","...mapgetters({","...mapmutations([","...mapmutations({","...mapstate('some/nested/module',","...mapstate({","...option","...state.obj,",".babelrc):",".babelrc）:",".default","/","/*","//","/\\.js$/,","/node_modules/","0","0)","1","1)","1,","10","10)","100)","1000)","123","123),","1st","2","2,","2.3.0+","2.3.0+):","2.5.0","2nd","3","3,","3.0","3rd","4th","6",":","=","===","=>",">",">=","?","[","[...state.cart.added]","[]","[],","[createlogger()]","[key:","[myplugin]","[mypluginwithsnapshot]","[plugin]","[some_mutation]","[type:","[{","]","])","]),","],","_.clonedeep(state)","_.clonedeep(store.state)","__dirname,","`","`,","`.default`","`actiona`","`console`","`getdata()`","`getotherdata()`","`getters`","`mapactions`","`mapmutations`","`modulea`'","`moduleb`'","`mutation`","`mutations`","`mymodule`","`namespaced`","`nested/mymodule`","`nextstate`...","`prevstate`","`root`","`rootgetters`","`some/nested/module`","`state","`state`","`store.commit`","`store.dispatch`","`store.getters.donetodoscount`","`store.getters`","`store.getters`,","`store.getters`，只存在于模块中","`store.state`,","`store.state`，只存在于模块中","`store.state`，若在模块中则为局部状态","`this.$store.commit('increment')`","`this.$store.commit('incrementby',","`this.$store.dispatch('increment')`","`this.$store.dispatch('incrementby',","`this.add()`","`this.donecount`","`this.increment()`","`this.incrementby(amount)`","`this`","`this`,","`true`","`{","`{{","a:","about.","abov","abramov","abramov,","abstract","accept","access","account:","achiev","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：","actual","ad","adapt","add","add:","addit","addition,","admittedly,","advanc","advantag","affect","again,","allow","alreadi","also,","altern","alternatively,","although","alway","amount","amount)`","amount:","anoth","any,","api","api,","api.","api.callasyncmethod(()","apis.","api。当测试","api，vuex","api，因此你可以直接用","app","app,","app.","app.vu","app:","app;","appli","applic","application'","application,","application.","application:","applications.","approach","arbitrari","architecture.","architecture。与其他模式不同的是，vuex","args,","argument","argument,","argument.","argument:","arguments.","arguments:","array","array)","array,","arrow","assembl","assert","asset","assets）","assets）时不需要在同一模块内额外添加空间名前缀。更改","assign","associ","assum","async","asynchron","asynchronous,","at.","attach","attempt","author","auto","automat","automatically.","automatically:","avail","avoid","await","await,","await，我们可以如下组合","b:","babel","base","basic","be","becom","befor","behind","belong","better","between","big","big,","bind","bit","bloated.","boilerplate.","boolean","both","bound","break","brittl","browser","browserifi","browserify,","browserify，让构建工具帮我们处理：","browsers.","bu","build","build.","built","bundl","bundle.","bundle.j","bundle.js'","bundle。","cach","call","callback","captur","care","cart","cart,","cart.j","case","cases,","catch","category:","caus","caveat","cb([","cb:","cd","cdn","center","central","certain","chai","chanc","chang","changed.","changes,","changes.","chapter","chapters.","check","checkout","child","clear","clone","code","code.","collabor","collapsed:","combin","come","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.","committed,","commit。换言之，你在使用模块内容（modul","common","commonli","compar","complet","complex","complic","compon","component,","component.","component:","components,","components.","components:","components?","compos","comput","computation,","computed.","computed:","concept","concepts.","config","config.","conflict","consid","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","constructor","consult","contain","context","context.","context.commit","context.commit('increment')","context.gett","context.getters.","context.rootstate:","context.rootstate：","context.st","contriv","convent","convert","copi","core","cost","cost.","count","count++","count,","count:","countalias:","counter","countpluslocalst","creat","createlogg","createlogger({","createnamespacedhelp","createnamespacedhelpers('some/nested/module')","createnamespacedhelpers(namespace:","createnamespacedhelpers.","createplugin","createvuexlogg","createvuexlogger。","createwebsocketplugin","createwebsocketplugin(socket)","creation)","cross","current","dan","data","data)","daunting.","deal","debug","debuggable,","debugging)","debugging.","decis","declar","deep","deepli","default","default,","default.","default:","defin","defineplugin","depend","dependencies,","dependencies.","deploy","deriv","describe('actions',","describe('getters',","describe('mutations',","descriptive:","descriptor","desir","destructur","detail","details,","detect","dev","develop","developers,","development,","development.","devtool","devtool'","devtools，你可能不需要此插件。","differ","direct","directli","directly,","directly?","discuss","dispatch","dispatch('account/login')","dispatch('actiona')","dispatch('actiona').then(()","dispatch('someotheraction')","dispatch('someotheraction',","dispatch(action:","dispatch(type:","dispatch,","dispatch/commit","dispatch:","display","divid","do:","docs.","documentation.","documentation。","doesn't","dom","dom。","don't","don't.","done","done()","done(error)","done)","done:","done?","donecount:","donetodos:","donetodoscount","donetodoscount:","doublecount","down","down:","download","drive","due","dumb","duplic","dure","dynam","e.g.","e.target.value)","each","easili","ecmascript","effect","effici","either:","el:","elm","enabl","encapsul","enforc","ensur","entir","entri","entry:","envifi","error","error.","es2015","es2015，你得抓紧了！","especi","essenti","evalu","evaluate,","even","event","event:","events.","events:","exact","exactli","exampl","example,","example.","example:","exclude:","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,","explicitli","export","export,","export:","expos","extens","extension，提供了诸如零配置的","extern","extract","extrem","factori","failur","fals","false,","false。","fashion.","featur","feel","few","field","fields,","file","file,","filename:","files.","filter","filtercategori","filteredproduct","final","finally,","find","fine","finer","finish","first","first?","fit","flow","flow\":","flows?","flux","flux,","flux、redux、和","follow","foo:","forc","form","format","fractal","framework/assert","fresh","full","function","function'","function)","function,","function.","functions,","functions.","further","furthermore,","gener","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。当我们在之后介绍到","getter、act","getter。你也可以在","getter，dispatch","getter，gett","getter，rootst","getter，也会通过","getter，只读。","getter，接收的第一个参数是模块的局部状态对象。","getter，根节点状态会作为第三个参数暴露出来：","gettodobyid:","git","github","give","given","glanc","glasses:","global","globally.","go","good","granular","greatli","grow","handl","handler","handler,","handler.","handler.\"","handler:","handlers,","handlers.","handler。这个选项更像是事件注册：“当触发一个类型为","handler，你需要以相应的","hard","have","haven't","help","helper","helpers,","helpers.","here","here'","high","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","id)","id:","idea","ideal.","imagin","implement","implementation:","implementations.","import","import.","importantly,","impossible:","in,","inappropri","inbound","includ","increment","increment(state)","increment:","incrementasync","incrementifoddonrootsum","index.html","index.j","indirect.","inherit","initi","inject","injection):","inlin","input","input.","insid","inspir","instal","instanc","instance,","instead","integr","intent","introduc","introduct","invok","involv","is,","isadmin","it'","it('filteredproducts',","it('getallproducts',","it('increment',","it,","it.","it?","item","itself","jump","karma","key","key.","key:","keystrokes:","know","larg","later","later.","latest","lead","learn","leav","less","let'","level","leverag","librari","like):","link","links.","linter","linters,","list","listen","loader","loader!./actions')","loader!./test.js'.","loader!./test.js'。","loader!babel","loader',","loader,","loader.","loader:","loaders.","loaders:","loaders。","loader。","local","localcomput","localhost:8080/webpack","locat","log","logged,","logger","logger:","logging,","logic","login","logs.","long","look","lose","made","main","main.j","maintainability.","make","manag","management,","mani","map","map:","mapact","mapactions(namespace?:","mapgett","mapgetters(namespace?:","mapgetters({","mapgetters,","mapmut","mapmutations(namespace?:","mapstat","mapstate([","mapstate(namespace?:","mapstate({","mapstate,","mapstate、mapgetters、mapact","mark","matter","mean","mechan","medium","merg","messag","message)","message:","method","method.","method:","methods.","methods/properti","methods:","mix","mocha","mock","mocking.","mode","mode,","mode.","model","modifications,","modul","modular","module'","module),","module,","module.","module.export","module.hot.accept(['./mutations',","module:","modulea","modulea,","moduleb","modules,","modules.","modules:","modules?","moment.","more","much","multipl","mutaion","mutat","mutated.","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：","mypage:","myplugin","mypluginwithsnapshot","myreusablemodul","n","n)","name","name,","name.","namespac","namespace,","namespace.","namespaced:","namespaced?,","natur","need","need.","nest","never","new","newmodulea","newmut","newmutations,","newprop:","next","next,","nextstat","nextstate...","node","node.","node_modules/vuex","non","normal","normally,","note","note:","now","now,","npm","npm.","null,","obj","obj.messag","obj.message。在严格模式中，由于这个修改不是在","object","object)","object):","object,","object.","object:","observ","observables).","of:","off","offici","on","one,","one.","only.","oper","operations,","operations.","opportun","optimist","option","option.","option:","options.","options.namespac","options:","options?:","order","ourselv","out","outbound","outer","output","output:","outsid","parent","parent/child","part","particularli","parts:","pass","path","path:","pattern","pattern\"?","patterns,","payload","payload)","payload,","payload.amount","payload:","payload?:","payloads:","perfectli","perform","persistence,","pick","piec","place","plain","play","plugin","plugin.","plugins,","plugins.","plugins:","point","pollut","popular","possibl","post","posts:","practic","practice,","pre","predict","prefer","prefix","preserv","preservest","preservestate:","pretti","previou","prevstat","principles:","probabl","problem","process.env.node_env","product","product.categori","production!","production,","productivity.","products)","products,","products.j","products:","profil","program","project","project.","promis","promise((resolve,","promise:","promise。详细介绍","promise，并且","promise：","prop","proper","properly,","properti","properties,","properties:","properties?","property,","property:","proposal),","provid","purposes.","put","queri","quickli","quit","quot","rather,","re","reach","react","reaction","reactiv","reactive,","reactive.","read","real","realiti","realli","reason","receiv","record","record,","redux","redux:","refer","reference,","regist","registered,","registermodule(path:","registr","registration:","reject)","releas","reli","reload","reload.","remain","rememb","remov","render","rendering.","repetit","replac","replacestate(state:","represent","request","request,","requir","require('./modules/a').default","require('./mutations').default","require('inject","resolv","resolve()","resolved.","resort","respons","rest","restrict","result","retriev","return","reus","reusable,","reuse.","right","root","root:","rootgett","rootgetters)","rootgetters.somegett","rootgetters.someothergett","rootstat","rootstate)","rootstate,","rootstate.count","rootstate.count)","rout","router","rule","rules,","run","runinnewcontext","same","same:","save","savedcartitem","savedcartitems)","scale","scale,","script","second","see","seen","self","send","separ","serv","server","server/test","server。","servic","set","setter","setter:","settimeout(()","setup","shape","share","shop","shop.buyproducts(","shop.getproducts(product","short","should!","sibl","side","sight:","similar","similarly,","simpl","simple,","simplest","simpli","simplic","simplifi","singl","singleton","singleton.","singleton?","situat","situation,","snapshot","snapshots,","socket.emit('update',","socket.on('data',","solut","some_mut","someact","somegett","somemut","someotheract","someothergetter:","sometim","sourc","spa","spa,","specif","split","spread","ssr","stage","start","started.","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","step","still","stop","store","store'","store,","store.","store.commit","store.commit('increment')","store.commit('increment',","store.commit('receivedata',","store.commit({","store.commit,","store.dispatch","store.dispatch('actiona').then(()","store.dispatch('increment')","store.dispatch('incrementasync',","store.dispatch(namespac","store.dispatch({","store.gett","store.getters.","store.getters.donetodo","store.getters.donetodoscount","store.getters.gettodobyid(2)","store.getters。","store.hotupdate()","store.hotupdate({","store.j","store.registermodul","store.registermodule('a',","store.registermodule('mymodule',","store.registermodule(['nested',","store.st","store.state,","store.state.a","store.state.b","store.state.count","store.state.count，是因为我们想要更明确地追踪到状态的变化。这个简单的约定能够让你的意图更加明显，这样你在阅读代码的时候能更容易地解读应用内部的状态改变。此外，这样也让我们有机会去实现一些能记录每次状态改变，保存状态快照的调试工具。有了它，我们甚至可以实现如时间穿梭般的调试体验。","store.state.mymodul","store.state.nested.mymodul","store.state.nested.mymodule.","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:","strictli","string","string):","string,","string.","string]:","structur","structure:","style","sub","subject","subscrib","subscribe(handler:","subscribeaction(handler:","success","succinct!","such","sumwithrootcount","support","sure","swap","sync","synchron","synchronous.","synchronous?","syntax","syntax:","system","system,","tag,","tags.","tailor","take","tasks):","tediou","template:","term","test","test,","test:","testact","testaction(actions.getallproducts,","tests.","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","track","trackable!","trade","transactions.","transactions:","transform","travel","tree","tree!","tree,","tri","trick","tricki","trigger","triggered,","trivial","true","true,","true.","true，它允许在命名空间模块里分发根的","true，它允许在命名空间模块里提交根的","true：","truth","truth\".","turn","two","two,","type","type,","type.","type:","types'","types.j","typescript","un","under","understand","unit","unlik","unmaintain","unpkg.com","unpredict","unregist","unregistermodule(path:","up","up,","updat","updatemessag","updates.","upfront.","url","us","us,","us:","usage:","user","users,","usual","util","v","valu","value)","value,","value:","value，然后侦听","variou","verbos","verbose.","verbose:","veri","versa.","version/tag","via","vice","view","view,","view.","view，以声明方式将","vm.$watch","vs.","vue","vue'","vue({","vue,","vue.j","vue.set(obj,","vue.use()","vue.use():","vue.use(vuex)","vue.use(vuex)):","vue.use(vuex)）：","vue:","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？","wait","want","want.","watch","watch(getter:","watcher","watching,","way","way\"","we'd","webpack","webpack'","webpack.config.j","webpack在真实浏览器环境中进行测试。","websocket","weigh","well.","whenev","whether","why?","within","without","words,","work","world","worth","write","written","yarn","you'v","you.","yourself","you’ll","zero","{","{{","{})","{},","|","||","}","})","})。","},","}]","}`","}`.","}}","}}`,","“store”","│","└──","├──","一个","一个数组，包含应用在","一条重要的原则就是要记住","一样直截了当。","一样遵守一些注意事项：","一目了然：","上使用","上克隆代码并自己构建。","上发布的最新版本。您也可以通过","上注册","上的插件方法。这些插件直接接收","上的用户输入导致的状态变化。","上面插件会默认启用。在发布阶段，你需要使用","下一步：action","下面是","下面是一个测试异步","下面是用","不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。","不要在发布环境下启用严格模式！严格模式会深度监测状态树来检测不合规的状态变更——请确保在发布环境下关闭严格模式，以避免性能损失。","与根模块的选项一样，每个模块也包含","严格模式","中也可以：","中使用","中初始化好所有所需属性。","中多次注册同一个模块","中定义“getter”（可以认为是","中很有用的特性。另一个方法是使用带有","中执行。换种方式，你也可以用","中执行测试","中提交","中查找","中派生出一些状态，例如对列表进行过滤并计数：","中混合异步调用会导致你的程序很难调试。例如，当你调用了两个包含异步回调的","中的","中的异步函数中的回调让这不可能完成：因为当","中的状态。改变","中的状态。详细介绍","中的状态发生变化，那么相应的组件也会相应地得到高效更新。","中的状态是响应式的，在组件中调用","中的状态是响应式的，那么当我们变更状态时，监视状态的","中的状态的唯一方法是提交","中的状态的唯一途径就是显式地提交","中的状态简单到仅需要在计算属性中返回即可。触发变化也仅仅是在组件的","中绑定","中读取状态的时候，若","中附加新模块的方式来使用","中，`getters`","中，mutat","为","为了处理异步操作，让我们来看一看","为了能够使用","为了解决以上问题，vuex","为组件创建计算属性以返回","之后就可以通过","之后引入","之后调用","之后，让我们来创建一个","之类的工具发挥作用，同时把这些常量放在单独的文件中可以让你的代码合作者对整个","乍一眼看上去感觉多此一举，我们直接分发","也可以接受其他","也支持载荷：","也被局部化了","也集成到","也需要与使用","事件类型","事件类型在各种","事件，在事件回调中调用","产品模块","产生的副作用（即状态变更）。","什么情况下我应该使用","什么时候结束呢？更重要的是，我们如何才能组合多个","什么是“状态管理模式”？","仍旧返回","他们可以接受","以下是一个表示“单向数据流”理念的极简示意：","以允许保留之前的","以对象形式分发","以新对象替换老对象。例如，利用","以载荷形式分发","任何由","会作为第三和第四参数传入","会使状态变化更显式和易调试，但也会使代码变得冗长和不直观。如果有些状态严格属于单个组件，最好还是作为组件的局部状态。你应该根据你的应用开发需要进行权衡和确定。","会在每个","会收到局部化的","会暴露为","会更易读：","会比较棘手：","会试图直接修改","会进行自动安装：","传一个字符串数组。","传入额外的参数，即","传参。在你对","传字符串参数","但是，当我们的应用遇到多个组件共享状态时，单向数据流的简洁性很容易被破坏：","作为其第一个参数：","作为命名输出对象","作为唯一参数，可以监听","作为唯一参数：","作为第一个参数（如果定义在模块中，则为模块的局部状态），payload","作为第一个参数，payload","作为第一个参数，其","作为第一个参数：","作为第三参数传给","作为第二个参数。最后接收一个可选的对象参数表示","作为第二个参数（可选）。","作为第二个参数：","作出响应。","你不能直接改变","你不能直接调用一个","你也可以使用","你也可以通过让","你可以使用","你可以向","你可以在组件中使用","你在组件中使用","使","使用","使用单一状态树——是的，用一个对象就包含了全部的应用层级状态。至此它便作为一个“唯一数据源","使用对象展开运算符将","使用对象展开运算符将此对象混入到外部对象中","使用常量替代","例如，只返回指定的子树","依赖","依赖的模块工厂","依赖，可以用","保存状态，用于下一次","保持不变：","假设","假设这里的","允许我们在","允许我们将","关联到","内置","内部执行异步操作：","再次强调，我们通过提交","函数。在这种情况下，只有当所有触发函数完成后，返回的","函数中执行的,","函数引起的，将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。","函数接受一个与","函数有几个配置项：","函数返回的是一个对象。我们如何将它与局部计算属性混合使用呢？通常，我们需要使用一个工具函数将多个对象合并为一个，以使我们可以将最终对象传给","函数，因此","函数：","分割到单独的文件。","分割成模块（module）。每个模块拥有自己的","分发","分发的时候调用并接收","分支下的最新版本，您可以直接从","创建一个","创建之后，你可以使用","创建以下","创建基于命名空间的组件绑定辅助函数。其返回一个包含","创建基于某个命名空间辅助函数。它返回一个对象，对象里有新的绑定在给定命名空间值上的组件绑定辅助函数：","创建多个","创建模块","创建组件方法分发","创建组件方法提交","初始化后调用","加载新模块","包含了子模块的对象，会被合并到","包含很复杂的计算过程，很有必要测试它们。getter","包含的","单一状态树","单状态树和模块化并不冲突——在后面的章节里我们会讨论如何将状态和状态变更事件分布到各个子模块中。","即可","即可。","卸载一个动态模块。详细介绍","参数解构","参考","参考热重载示例","及","双向绑定的计算属性","发出结账请求，然后乐观地清空购物车","取个变量名然后把它输出去：","变化的时候,","变更状态","另外，通过定义和隔离状态管理中的各种概念并强制遵守一定的规则，我们的代码将会变得更结构化且易维护。","只会接收","只要你遵守以上规则，如何组织代码随你便。如果你的","可以包含","可以包含任意异步操作。","可以处理被触发的","可以帮助我们管理共享状态，但也附带了更多的概念和框架。这需要对短期和长期效益进行权衡。","可能是繁琐冗余的。确实是如此——如果您的应用够简单，您最好不要使用","同样指向局部状态。","同样，对于模块内部的","后的状态作为参数：","启用了命名空间的","命名空间","和","和分发多重","和单纯的全局对象有以下两点不同：","和参数调用","和模块，你需要使用","和经过","响应式地监测一个","回调函数","因为","因此，我们为什么不把组件的共享状态抽取出来，以一个全局单例模式管理呢？在这种模式下，我们的组件树构成了一个巨大的“视图”，不管在树的哪个位置，任何组件都能获取状态或者触发行为！","在","在一个","在一个模块化的打包系统中，您必须显式地通过","在不同模块中可以触发多个","在严格模式下，无论何时发生了状态变更且不是由","在单独构建的版本中辅助函数为","在另外一个","在命名空间模块内访问全局内容（global","在大多数情况下，载荷应该是一个对象，这样可以包含多个字段并且记录的","在开始记录之前转换状态","在插件中不允许直接修改状态——类似于组件，只能通过提交","在插件内提交","在注册一个新","在浏览器中执行测试","在浏览器中测试","在组件中分发","在组件中提交","在这一章，我们将会学到","在这个模块中，","在这个模块的","处理之后这些测试应该不依赖任何浏览器","处理函数以外修改","处理器的","多个视图依赖于同一状态。","失败操作","如果你传入返回一个对象的函数，其返回的对象会被用作根","如果你希望使用全局","如果你开发的插件（plugin）提供了模块并允许用户将其添加到","如果你想将一个","如果你的","如果在模块中定义则为模块的局部状态","如果在模块化构建系统中，请确保在开头调用了","如果希望你的模块具有更高的封装度和复用性，你可以通过添加","如果您不打算开发大型单页应用，使用","如果我们使用一个纯对象来声明模块的状态，那么这个状态对象会通过引用被共享，导致状态对象被修改时","如果有多个组件需要用到此属性，我们要么复制这个函数，或者抽取到一个共享函数然后在多处导入它——无论哪种方式都不是很理想。","如果正在使用","如果需要使用","安装","完成","完成后调用，接收","实例。单一状态树让我们能够直接地定位任一特定的状态片段，在调试的过程中也能轻易地取得整个当前应用状态的快照。","实例中读取状态最简单的方法就是在计算属性中返回某个状态：","实例会注入到根组件下的所有子组件中，且子组件能通过","实例具有相同方法和属性的","实例属性","实例方法","实例本身了。","实例的根","实现中是很常见的模式。这样可以使","实现，默认为","实践中，我们会经常用到","实际上这和","对于","对于大型应用，我们会希望把","对于模块内部的","对于这种情况，你可以将模块的空间名称字符串作为第一个参数传递给上述函数，这样所有绑定都会自动将该模块作为上下文。于是上面的例子可以简化为：","对于问题一，传参的方法对于多层嵌套的组件将会非常繁琐，并且对于兄弟组件间的状态传递无能为力。对于问题二，我们经常会采用父子组件直接引用或者通过事件来变更和同步状态的多份拷贝。以上的这些模式非常脆弱，通常会导致无法维护的代码。","对象","对象。详细介绍","对象中","对象中。","对象为什么不是","对象包含以下属性：","对象和一些","对象就有可能变得相当臃肿。","对象展开运算符","对象提供给","对象是模块的局部状态","对象的属性传入","对象风格的提交方式","对象，因此你可以调用","对象，尤其是对于重用","对象：","导致的状态变更都应该在此刻完成。","将","将会成为自然而然的选择。引用","就不受约束！我们可以在","就足够您所需了。但是，如果您需要构建是一个中大型单页应用，您很可能会考虑如何更好地在组件外部管理状态，vuex","局部状态”要啰嗦得多，并且也损失了一些","属性。但是自从有了对象展开运算符（现处于","属性不会对其产生影响","属性以访问根","属性另取一个名字，使用对象形式：","属性后不需要修改模块内的代码。","属性的对象：","岂不更方便？实际上并非如此，还记得","嵌套模块","带命名空间的绑定函数","并不意味着你需要将所有的状态放入","并不限制你的代码结构。但是，它规定了一些需要遵守的规则：","并且观察","应对起来略微棘手，因为它们可能需要调用外部的","应用","应用层级的状态应该集中到单个","应用的核心就是","应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态，并以相应的规则保证状态以一种可预测的方式发生变化。vuex","开发环境与发布环境","开启严格模式，仅需在创建","开始","异步逻辑都应该封装到","引用","当","当一个组件需要获取多个状态时候，将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题，我们可以使用","当使用","当使用全局","当使用对象风格的提交方式，整个对象都作为载荷传给","当在严格模式中使用","当定义在一个模块里时会特别一些：","当映射的计算属性的名称与","当需要在对象上添加新属性时，你应该","很多次的时候）：","很容易被测试，因为它们仅仅是一些完全依赖参数的函数。这里有一个小技巧，如果你在","必须同步执行这个限制么？action","必须承认，这样做比简单地使用“v","必须是同步函数","必须是同步函数。为什么？请参考下面的例子：","快照","成为可热重载模块","成功操作","我们主要想针对","我们可以使用","我们可以很容易地在任何组件中使用它：","我们可以按任意方式格式化","我们组装模块并导出","或","或提交","或模块间数据互相污染的问题。","或者","或者是","所有","才会执行。","打包测试文件。","打包这些测试文件然后在","执行测试","把","把上述","把当前购物车的物品备份起来","把空间名字添加到插件模块的类型（type）中去","抽取出api请求","按照","接下来，我们将会更深入地探讨一些核心概念。让我们先从","接受","接受一个成功回调和一个失败回调","接收","描述和当前的","提交","提交一个","提交的是","提交载荷（payload）","提供了基于","提案","提示：我们将在后续的文档示例代码中使用","插件","插件。","插件会生成状态快照，所以仅在开发环境使用。","插件函数","插件可以通过在","插件就是一个函数，它接收","插件就是通过动态注册模块将","支持同样的载荷方式和对象方式进行分发：","支持在开发过程中热重载","支持）：","改成","数据源到","文件中定义了","文件太大，只需将","文档","断言结果","新增","方法可以有更多选项来完成复杂任务）：","方法接受以下参数：","方法注册模块：","方法的参数。","方法的返回值，当值改变时调用回调函数。getter","方法触发状态变更：","方法触发：","方法：","既然","日志。每一条","日志插件还可以直接通过","时声明的模块）。","时，不需要以上安装过程。","时，为了在服务端渲染中避免有状态的单例)","时，你就知道","时，你很有可能想保留过去的","时，在属于","时，调用此函数。”要唤醒一个","映射","映射为","映射到局部计算属性：","映射到视图；","是一个专为","是专门为","是个","是什么？","是同样的问题。因此解决办法也是相同的——使用一个函数来声明模块状态（仅","是在计算属性中返回的一个属于","是更改状态的唯一方法，并且这个过程是同步的。","是注册在全局命名空间的——这样使得多个模块能够对同一","暴露为","暴露出来，根节点状态则为","暴露出注册的","更改","更新记录","替换","最后，如果我们利用","最好提前在你的","最简单的","有时候我们需要从","有时候插件需要获得状态的“快照”，比较改变的前后状态。想要实现这项功能，你需要对状态对象进行深拷贝：","有时我们可能需要创建一个模块的多个实例，例如：","服务回应","服务层——例如，我们可以把","来动态卸载模块。注意，你不能使用此方法卸载静态模块（即创建","来安装","来改变状态，你怎么知道什么时候回调和哪个先回调呢？这就是为什么我们要区分这两个概念。在","来看一个更加实际的购物车示例，涉及到调用异步","来简化代码（特别是我们需要调用","来自不同视图的行为需要变更同一状态。","来获取","来获取状态对象，以及通过","来触发变化。","来记录","来说是必要的。","来说非常有用。详细介绍","构造器选项","架构就像眼镜：您自会知道什么时候需要它。","某些观察者）","标签引入，它会提供全局方法","标签引用","核心概念","根状态，只读。","根级别的","格式记录","检查是否没有","概念开始。","模块内容（modul","模块内的状态已经是嵌套的了，使用","模块功能默认输出了","模块动态注册","模块动态注册功能使得其他","模块的局部状态","模块重用","模拟","模拟提交","模拟状态","每一个","每当","每次","比较","注册一个动态模块。详细介绍","注册嵌套模块","注册模块","注册的","注册监听","注意我们正在进行一系列的异步操作，并且通过提交","注意：对于","测试","测试一个","深入理解所有的概念对于使用","混入","热替换新的","热重载","然后像这样使用：","然后返回","然后：","然而，这种模式导致组件依赖全局状态单例。在模块化的构建系统中，在每个需要使用","状态","现在你可以：","现在想象，我们正在","现在，你可以通过","生成","生成状态快照的插件应该只在开发阶段使用，使用","用“vuex","用不用常量取决于你——在需要多人协作的大型项目中，这会很有帮助。但如果你不喜欢，你完全可以不这样做。","用以上配置启动","用户来说","用指定的","用模拟的","由于","由于使用单一状态树，应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时，store","的","的作者","的例子（实际上你可以用任何你喜欢的测试框架）：","的例子：","的双向绑定计算属性：","的另一种方式是直接使用包含","的响应规则","的地方","的处理函数返回的","的子节点名称相同时，我们也可以给","的官方调试工具","的实例注入所有的子组件","的实例，那么你仍然可以给","的实现：","的对象。它们都已经绑定在了给定的命名空间上。详细介绍","的对象展开运算符我们可以这样写：","的对象，在用户输入时，v","的局部状态作为第一个参数，而不是根状态，并且模块","的思维”去解决这个问题的方法是：给","的方式使其成为命名空间模块。当模块被注册后，它的所有","的方式，而非直接改变","的时候传入","的时候，我们需要增加一个","的根状态。模块的","的根状态，仅用状态合并或时光旅行调试。","的格式为","的模块编译格式问题，这里需要加上","的测试与","的状态","的状态存储是响应式的。当","的状态存储是响应式的，从","的示例：","的第四个参数来调用","的组件中需要频繁地导入，并且在测试组件时需要模拟状态。","的细粒度数据响应机制来进行高效的状态更新。","的结果","的计算属性）。就像计算属性一样，getter","的话说就是：","的辅助函数","的返回值。详细介绍","的返回值会根据它的依赖被缓存起来，且只有当它的依赖值发生了改变才会被重新计算。","的这些核心概念。他们是：","的钩子。vuex","直接下载","相关代码分割到模块中。下面是项目结构示例：","第一个参数是可选的，可以是一个命名空间字符串。详细介绍","等同于","等待","等等...","管理状态。例如，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 是什么？\n开始\n核心概念\nState\nGetter\nMutation\nAction\nModule\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 这样的方式指定特定的版本。\n\n在 Vue 之后引入 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当使用全局 script 标签引用 Vuex 时，不需要以上安装过程。\n自己构建\n如果需要使用 dev 分支下的最新版本，您可以直接从 GitHub 上克隆代码并自己构建。\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 应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态，并以相应的规则保证状态以一种可预测的方式发生变化。Vuex 也集成到 Vue 的官方调试工具 devtools extension，提供了诸如零配置的 time-travel 调试、状态快照导入导出等高级调试功能。\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\nstate，驱动应用的数据源；\nview，以声明方式将 state 映射到视图；\nactions，响应在 view 上的用户输入导致的状态变化。\n\n以下是一个表示“单向数据流”理念的极简示意：\n\n  \n\n\n但是，当我们的应用遇到多个组件共享状态时，单向数据流的简洁性很容易被破坏：\n\n多个视图依赖于同一状态。\n来自不同视图的行为需要变更同一状态。\n\n对于问题一，传参的方法对于多层嵌套的组件将会非常繁琐，并且对于兄弟组件间的状态传递无能为力。对于问题二，我们经常会采用父子组件直接引用或者通过事件来变更和同步状态的多份拷贝。以上的这些模式非常脆弱，通常会导致无法维护的代码。\n因此，我们为什么不把组件的共享状态抽取出来，以一个全局单例模式管理呢？在这种模式下，我们的组件树构成了一个巨大的“视图”，不管在树的哪个位置，任何组件都能获取状态或者触发行为！\n另外，通过定义和隔离状态管理中的各种概念并强制遵守一定的规则，我们的代码将会变得更结构化且易维护。\n这就是 Vuex 背后的基本思想，借鉴了 Flux、Redux、和 The Elm Architecture。与其他模式不同的是，Vuex 是专门为 Vue.js 设计的状态管理库，以利用 Vue.js 的细粒度数据响应机制来进行高效的状态更新。\n\n什么情况下我应该使用 Vuex？\n虽然 Vuex 可以帮助我们管理共享状态，但也附带了更多的概念和框架。这需要对短期和长期效益进行权衡。\n如果您不打算开发大型单页应用，使用 Vuex 可能是繁琐冗余的。确实是如此——如果您的应用够简单，您最好不要使用 Vuex。一个简单的 global event bus 就足够您所需了。但是，如果您需要构建是一个中大型单页应用，您很可能会考虑如何更好地在组件外部管理状态，Vuex 将会成为自然而然的选择。引用 Redux 的作者 Dan Abramov 的话说就是：\n\nFlux 架构就像眼镜：您自会知道什么时候需要它。\n\n"},"getting-started.html":{"url":"getting-started.html","title":"开始","keywords":"","body":"开始\n每一个 Vuex 应用的核心就是 store（仓库）。“store”基本上就是一个容器，它包含着你的应用中大部分的状态 (state)。Vuex 和单纯的全局对象有以下两点不同：\n\nVuex 的状态存储是响应式的。当 Vue 组件从 store 中读取状态的时候，若 store 中的状态发生变化，那么相应的组件也会相应地得到高效更新。\n\n你不能直接改变 store 中的状态。改变 store 中的状态的唯一途径就是显式地提交 (commit) mutation。这样使得我们可以方便地跟踪每一个状态的变化，从而让我们能够实现一些工具帮助我们更好地了解我们的应用。\n\n\n最简单的 Store\n\n提示：我们将在后续的文档示例代码中使用 ES2015 语法。如果你还没能掌握 ES2015，你得抓紧了！\n\n安装 Vuex 之后，让我们来创建一个 store。创建过程直截了当——仅需要提供一个初始 state 对象和一些 mutation：\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再次强调，我们通过提交 mutation 的方式，而非直接改变 store.state.count，是因为我们想要更明确地追踪到状态的变化。这个简单的约定能够让你的意图更加明显，这样你在阅读代码的时候能更容易地解读应用内部的状态改变。此外，这样也让我们有机会去实现一些能记录每次状态改变，保存状态快照的调试工具。有了它，我们甚至可以实现如时间穿梭般的调试体验。\n由于 store 中的状态是响应式的，在组件中调用 store 中的状态简单到仅需要在计算属性中返回即可。触发变化也仅仅是在组件的 methods 中提交 mutation。\n这是一个最基本的 Vuex 记数应用示例。\n接下来，我们将会更深入地探讨一些核心概念。让我们先从 State 概念开始。\n"},"core-concepts.html":{"url":"core-concepts.html","title":"核心概念","keywords":"","body":"核心概念\n在这一章，我们将会学到 Vuex 的这些核心概念。他们是：\n\nState\nGetter\nMutation\nAction\nModule\n\n深入理解所有的概念对于使用 Vuex 来说是必要的。\n让我们开始吧。\n"},"state.html":{"url":"state.html","title":"State","keywords":"","body":"State\n单一状态树\nVuex 使用单一状态树——是的，用一个对象就包含了全部的应用层级状态。至此它便作为一个“唯一数据源 (SSOT)”而存在。这也意味着，每个应用将仅仅包含一个 store 实例。单一状态树让我们能够直接地定位任一特定的状态片段，在调试的过程中也能轻易地取得整个当前应用状态的快照。\n单状态树和模块化并不冲突——在后面的章节里我们会讨论如何将状态和状态变更事件分布到各个子模块中。\n在 Vue 组件中获得 Vuex 状态\n那么我们如何在 Vue 组件中展示状态呢？由于 Vuex 的状态存储是响应式的，从 store 实例中读取状态最简单的方法就是在计算属性中返回某个状态：\n// 创建一个 Counter 组件\nconst Counter = {\n  template: `{{ count }}`,\n  computed: {\n    count () {\n      return store.state.count\n    }\n  }\n}\n\n每当 store.state.count 变化的时候, 都会重新求取计算属性，并且触发更新相关联的 DOM。\n然而，这种模式导致组件依赖全局状态单例。在模块化的构建系统中，在每个需要使用 state 的组件中需要频繁地导入，并且在测试组件时需要模拟状态。\nVuex 通过 store 选项，提供了一种机制将状态从根组件“注入”到每一个子组件中（需调用 Vue.use(Vuex)）：\nconst app = new Vue({\n  el: '#app',\n  // 把 store 对象提供给 “store” 选项，这可以把 store 的实例注入所有的子组件\n  store,\n  components: { Counter },\n  template: `\n    \n      \n    \n  `\n})\n\n通过在根实例中注册 store 选项，该 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\n    // 传字符串参数 'count' 等同于 `state => state.count`\n    countAlias: 'count',\n\n    // 为了能够使用 `this` 获取局部状态，必须使用常规函数\n    countPlusLocalState (state) {\n      return state.count + this.localCount\n    }\n  })\n}\n\n当映射的计算属性的名称与 state 的子节点名称相同时，我们也可以给 mapState 传一个字符串数组。\ncomputed: mapState([\n  // 映射 this.count 为 store.state.count\n  'count'\n])\n\n对象展开运算符\nmapState 函数返回的是一个对象。我们如何将它与局部计算属性混合使用呢？通常，我们需要使用一个工具函数将多个对象合并为一个，以使我们可以将最终对象传给 computed 属性。但是自从有了对象展开运算符（现处于 ECMASCript 提案 stage-3 阶段），我们可以极大地简化写法：\ncomputed: {\n  localComputed () { /* ... */ },\n  // 使用对象展开运算符将此对象混入到外部对象中\n  ...mapState({\n    // ...\n  })\n}\n\n组件仍然保有局部状态\n使用 Vuex 并不意味着你需要将所有的状态放入 Vuex。虽然将所有的状态放到 Vuex 会使状态变化更显式和易调试，但也会使代码变得冗长和不直观。如果有些状态严格属于单个组件，最好还是作为组件的局部状态。你应该根据你的应用开发需要进行权衡和确定。\n"},"getters.html":{"url":"getters.html","title":"Getter","keywords":"","body":"Getter\n有时候我们需要从 store 中的 state 中派生出一些状态，例如对列表进行过滤并计数：\ncomputed: {\n  doneTodosCount () {\n    return this.$store.state.todos.filter(todo => todo.done).length\n  }\n}\n\n如果有多个组件需要用到此属性，我们要么复制这个函数，或者抽取到一个共享函数然后在多处导入它——无论哪种方式都不是很理想。\nVuex 允许我们在 store 中定义“getter”（可以认为是 store 的计算属性）。就像计算属性一样，getter 的返回值会根据它的依赖被缓存起来，且只有当它的依赖值发生了改变才会被重新计算。\nGetter 接受 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\nGetter 会暴露为 store.getters 对象：\nstore.getters.doneTodos // -> [{ id: 1, text: '...', done: true }]\n\nGetter 也可以接受其他 getter 作为第二个参数：\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你也可以通过让 getter 返回一个函数，来实现给 getter 传参。在你对 store 里的数组进行查询时非常有用。\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 辅助函数仅仅是将 store 中的 getter 映射到局部计算属性：\nimport { mapGetters } from 'vuex'\n\nexport default {\n  // ...\n  computed: {\n  // 使用对象展开运算符将 getter 混入 computed 对象中\n    ...mapGetters([\n      'doneTodosCount',\n      'anotherGetter',\n      // ...\n    ])\n  }\n}\n\n如果你想将一个 getter 属性另取一个名字，使用对象形式：\nmapGetters({\n  // 映射 `this.doneCount` 为 `store.getters.doneTodosCount`\n  doneCount: 'doneTodosCount'\n})\n\n"},"mutations.html":{"url":"mutations.html","title":"Mutation","keywords":"","body":"Mutation\n更改 Vuex 的 store 中的状态的唯一方法是提交 mutation。Vuex 中的 mutation 非常类似于事件：每个 mutation 都有一个字符串的 事件类型 (type) 和 一个 回调函数 (handler)。这个回调函数就是我们实际进行状态更改的地方，并且它会接受 state 作为第一个参数：\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你不能直接调用一个 mutation handler。这个选项更像是事件注册：“当触发一个类型为 increment 的 mutation 时，调用此函数。”要唤醒一个 mutation handler，你需要以相应的 type 调用 store.commit 方法：\nstore.commit('increment')\n\n提交载荷（Payload）\n你可以向 store.commit 传入额外的参数，即 mutation 的 载荷（payload）：\n// ...\nmutations: {\n  increment (state, n) {\n    state.count += n\n  }\n}\n\nstore.commit('increment', 10)\n\n在大多数情况下，载荷应该是一个对象，这样可以包含多个字段并且记录的 mutation 会更易读：\n// ...\nmutations: {\n  increment (state, payload) {\n    state.count += payload.amount\n  }\n}\n\nstore.commit('increment', {\n  amount: 10\n})\n\n对象风格的提交方式\n提交 mutation 的另一种方式是直接使用包含 type 属性的对象：\nstore.commit({\n  type: 'increment',\n  amount: 10\n})\n\n当使用对象风格的提交方式，整个对象都作为载荷传给 mutation 函数，因此 handler 保持不变：\nmutations: {\n  increment (state, payload) {\n    state.count += payload.amount\n  }\n}\n\nMutation 需遵守 Vue 的响应规则\n既然 Vuex 的 store 中的状态是响应式的，那么当我们变更状态时，监视状态的 Vue 组件也会自动更新。这也意味着 Vuex 中的 mutation 也需要与使用 Vue 一样遵守一些注意事项：\n\n最好提前在你的 store 中初始化好所有所需属性。\n\n当需要在对象上添加新属性时，你应该\n\n使用 Vue.set(obj, 'newProp', 123), 或者\n\n以新对象替换老对象。例如，利用 stage-3 的对象展开运算符我们可以这样写：\nstate.obj = { ...state.obj, newProp: 123 }\n\n\n\n\n\n使用常量替代 Mutation 事件类型\n使用常量替代 mutation 事件类型在各种 Flux 实现中是很常见的模式。这样可以使 linter 之类的工具发挥作用，同时把这些常量放在单独的文件中可以让你的代码合作者对整个 app 包含的 mutation 一目了然：\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 风格的计算属性命名功能来使用一个常量作为函数名\n    [SOME_MUTATION] (state) {\n      // mutate state\n    }\n  }\n})\n\n用不用常量取决于你——在需要多人协作的大型项目中，这会很有帮助。但如果你不喜欢，你完全可以不这样做。\nMutation 必须是同步函数\n一条重要的原则就是要记住 mutation 必须是同步函数。为什么？请参考下面的例子：\nmutations: {\n  someMutation (state) {\n    api.callAsyncMethod(() => {\n      state.count++\n    })\n  }\n}\n\n现在想象，我们正在 debug 一个 app 并且观察 devtool 中的 mutation 日志。每一条 mutation 被记录，devtools 都需要捕捉到前一状态和后一状态的快照。然而，在上面的例子中 mutation 中的异步函数中的回调让这不可能完成：因为当 mutation 触发的时候，回调函数还没有被调用，devtools 不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。\n在组件中提交 Mutation\n你可以在组件中使用 this.$store.commit('xxx') 提交 mutation，或者使用 mapMutations 辅助函数将组件中的 methods 映射为 store.commit 调用（需要在根节点注入 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下一步：Action\n在 mutation 中混合异步调用会导致你的程序很难调试。例如，当你调用了两个包含异步回调的 mutation 来改变状态，你怎么知道什么时候回调和哪个先回调呢？这就是为什么我们要区分这两个概念。在 Vuex 中，mutation 都是同步事务：\nstore.commit('increment')\n// 任何由 \"increment\" 导致的状态变更都应该在此刻完成。\n\n为了处理异步操作，让我们来看一看 Action。\n"},"actions.html":{"url":"actions.html","title":"Action","keywords":"","body":"Action\nAction 类似于 mutation，不同在于：\n\nAction 提交的是 mutation，而不是直接变更状态。\nAction 可以包含任意异步操作。\n\n让我们来注册一个简单的 action：\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\nAction 函数接受一个与 store 实例具有相同方法和属性的 context 对象，因此你可以调用 context.commit 提交一个 mutation，或者通过 context.state 和 context.getters 来获取 state 和 getters。当我们在之后介绍到 Modules 时，你就知道 context 对象为什么不是 store 实例本身了。\n实践中，我们会经常用到 ES2015 的 参数解构 来简化代码（特别是我们需要调用 commit 很多次的时候）：\nactions: {\n  increment ({ commit }) {\n    commit('increment')\n  }\n}\n\n分发 Action\nAction 通过 store.dispatch 方法触发：\nstore.dispatch('increment')\n\n乍一眼看上去感觉多此一举，我们直接分发 mutation 岂不更方便？实际上并非如此，还记得 mutation 必须同步执行这个限制么？Action 就不受约束！我们可以在 action 内部执行异步操作：\nactions: {\n  incrementAsync ({ commit }) {\n    setTimeout(() => {\n      commit('increment')\n    }, 1000)\n  }\n}\n\nActions 支持同样的载荷方式和对象方式进行分发：\n// 以载荷形式分发\nstore.dispatch('incrementAsync', {\n  amount: 10\n})\n\n// 以对象形式分发\nstore.dispatch({\n  type: 'incrementAsync',\n  amount: 10\n})\n\n来看一个更加实际的购物车示例，涉及到调用异步 API 和分发多重 mutation：\nactions: {\n  checkout ({ commit, state }, products) {\n    // 把当前购物车的物品备份起来\n    const savedCartItems = [...state.cart.added]\n    // 发出结账请求，然后乐观地清空购物车\n    commit(types.CHECKOUT_REQUEST)\n    // 购物 API 接受一个成功回调和一个失败回调\n    shop.buyProducts(\n      products,\n      // 成功操作\n      () => commit(types.CHECKOUT_SUCCESS),\n      // 失败操作\n      () => commit(types.CHECKOUT_FAILURE, savedCartItems)\n    )\n  }\n}\n\n注意我们正在进行一系列的异步操作，并且通过提交 mutation 来记录 action 产生的副作用（即状态变更）。\n在组件中分发 Action\n你在组件中使用 this.$store.dispatch('xxx') 分发 action，或者使用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用（需要先在根节点注入 store）：\nimport { mapActions } from 'vuex'\n\nexport default {\n  // ...\n  methods: {\n    ...mapActions([\n      'increment', // 将 `this.increment()` 映射为 `this.$store.dispatch('increment')`\n\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组合 Action\nAction 通常是异步的，那么如何知道 action 什么时候结束呢？更重要的是，我们如何才能组合多个 action，以处理更加复杂的异步流程？\n首先，你需要明白 store.dispatch 可以处理被触发的 action 的处理函数返回的 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在另外一个 action 中也可以：\nactions: {\n  // ...\n  actionB ({ dispatch, commit }) {\n    return dispatch('actionA').then(() => {\n      commit('someOtherMutation')\n    })\n  }\n}\n\n最后，如果我们利用 async / await，我们可以如下组合 action：\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\n一个 store.dispatch 在不同模块中可以触发多个 action 函数。在这种情况下，只有当所有触发函数完成后，返回的 Promise 才会执行。\n\n"},"modules.html":{"url":"modules.html","title":"Module","keywords":"","body":"Module\n由于使用单一状态树，应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时，store 对象就有可能变得相当臃肿。\n为了解决以上问题，Vuex 允许我们将 store 分割成模块（module）。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割：\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对于模块内部的 mutation 和 getter，接收的第一个参数是模块的局部状态对象。\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同样，对于模块内部的 action，局部状态通过 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对于模块内部的 getter，根节点状态会作为第三个参数暴露出来：\nconst moduleA = {\n  // ...\n  getters: {\n    sumWithRootCount (state, getters, rootState) {\n      return state.count + rootState.count\n    }\n  }\n}\n\n命名空间\n默认情况下，模块内部的 action、mutation 和 getter 是注册在全局命名空间的——这样使得多个模块能够对同一 mutation 或 action 作出响应。\n如果希望你的模块具有更高的封装度和复用性，你可以通过添加 namespaced: true 的方式使其成为命名空间模块。当模块被注册后，它的所有 getter、action 及 mutation 都会自动根据模块注册的路径调整命名。例如：\nconst store = new Vuex.Store({\n  modules: {\n    account: {\n      namespaced: true,\n\n      // 模块内容（module assets）\n      state: { ... }, // 模块内的状态已经是嵌套的了，使用 `namespaced` 属性不会对其产生影响\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启用了命名空间的 getter 和 action 会收到局部化的 getter，dispatch 和 commit。换言之，你在使用模块内容（module assets）时不需要在同一模块内额外添加空间名前缀。更改 namespaced 属性后不需要修改模块内的代码。\n在命名空间模块内访问全局内容（Global Assets）\n如果你希望使用全局 state 和 getter，rootState 和 rootGetter 会作为第三和第四参数传入 getter，也会通过 context 对象的属性传入 action。\n若需要在全局命名空间内分发 action 或提交 mutation，将 { root: true } 作为第三参数传给 dispatch 或 commit 即可。\nmodules: {\n  foo: {\n    namespaced: true,\n\n    getters: {\n      // 在这个模块的 getter 中，`getters` 被局部化了\n      // 你可以使用 getter 的第四个参数来调用 `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      // 在这个模块中， dispatch 和 commit 也被局部化了\n      // 他们可以接受 `root` 属性以访问根 dispatch 或 commit\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带命名空间的绑定函数\n当使用 mapState, 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对于这种情况，你可以将模块的空间名称字符串作为第一个参数传递给上述函数，这样所有绑定都会自动将该模块作为上下文。于是上面的例子可以简化为：\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如果你开发的插件（Plugin）提供了模块并允许用户将其添加到 Vuex store，可能需要考虑模块的空间名称问题。对于这种情况，你可以通过插件的参数对象来允许用户指定空间名称：\n// 通过插件的参数对象得到空间名称\n// 然后返回 Vuex 插件函数\nexport function createPlugin (options = {}) {\n  return function (store) {\n    // 把空间名字添加到插件模块的类型（type）中去\n    const namespace = options.namespace || ''\n    store.dispatch(namespace + 'pluginAction')\n  }\n}\n\n模块动态注册\n在 store 创建之后，你可以使用 store.registerModule 方法注册模块：\n// 注册模块 `myModule`\nstore.registerModule('myModule', {\n  // ...\n})\n// 注册嵌套模块 `nested/myModule`\nstore.registerModule(['nested', 'myModule'], {\n  // ...\n})\n\n之后就可以通过 store.state.myModule 和 store.state.nested.myModule 访问模块的状态。\n模块动态注册功能使得其他 Vue 插件可以通过在 store 中附加新模块的方式来使用 Vuex 管理状态。例如，vuex-router-sync 插件就是通过动态注册模块将 vue-router 和 vuex 结合在一起，实现应用的路由状态管理。\n你也可以使用 store.unregisterModule(moduleName) 来动态卸载模块。注意，你不能使用此方法卸载静态模块（即创建 store 时声明的模块）。\n在注册一个新 module 时，你很有可能想保留过去的 state，例如从一个服务端渲染的应用保留 state。你可以通过 preserveState 选项将其归档：store.registerModule('a', module, { preserveState: true })。\n模块重用\n有时我们可能需要创建一个模块的多个实例，例如：\n\n创建多个 store，他们公用同一个模块 (例如当 runInNewContext 选项是 false 或 'once' 时，为了在服务端渲染中避免有状态的单例)\n在一个 store 中多次注册同一个模块\n\n如果我们使用一个纯对象来声明模块的状态，那么这个状态对象会通过引用被共享，导致状态对象被修改时 store 或模块间数据互相污染的问题。\n实际上这和 Vue 组件内的 data 是同样的问题。因此解决办法也是相同的——使用一个函数来声明模块状态（仅 2.3.0+ 支持）：\nconst MyReusableModule = {\n  state () {\n    return {\n      foo: 'bar'\n    }\n  },\n  // mutation, action 和 getter 等等...\n}\n\n"},"structure.html":{"url":"structure.html","title":"项目结构","keywords":"","body":"项目结构\nVuex 并不限制你的代码结构。但是，它规定了一些需要遵守的规则：\n\n应用层级的状态应该集中到单个 store 对象中。\n\n提交 mutation 是更改状态的唯一方法，并且这个过程是同步的。\n\n异步逻辑都应该封装到 action 里面。\n\n\n只要你遵守以上规则，如何组织代码随你便。如果你的 store 文件太大，只需将 action、mutation 和 getter 分割到单独的文件。\n对于大型应用，我们会希望把 Vuex 相关代码分割到模块中。下面是项目结构示例：\n├── index.html\n├── main.js\n├── api\n│   └── ... # 抽取出API请求\n├── components\n│   ├── App.vue\n│   └── ...\n└── store\n    ├── index.js          # 我们组装模块并导出 store 的地方\n    ├── actions.js        # 根级别的 action\n    ├── mutations.js      # 根级别的 mutation\n    └── modules\n        ├── cart.js       # 购物车模块\n        └── products.js   # 产品模块\n\n请参考购物车示例。\n"},"plugins.html":{"url":"plugins.html","title":"插件","keywords":"","body":"插件\nVuex 的 store 接受 plugins 选项，这个选项暴露出每次 mutation 的钩子。Vuex 插件就是一个函数，它接收 store 作为唯一参数：\nconst myPlugin = store => {\n  // 当 store 初始化后调用\n  store.subscribe((mutation, state) => {\n    // 每次 mutation 之后调用\n    // mutation 的格式为 { type, payload }\n  })\n}\n\n然后像这样使用：\nconst store = new Vuex.Store({\n  // ...\n  plugins: [myPlugin]\n})\n\n在插件内提交 Mutation\n在插件中不允许直接修改状态——类似于组件，只能通过提交 mutation 来触发变化。\n通过提交 mutation，插件可以用来同步数据源到 store。例如，同步 websocket 数据源到 store（下面是个大概例子，实际上 createPlugin 方法可以有更多选项来完成复杂任务）：\nexport default function createWebSocketPlugin (socket) {\n  return store => {\n    socket.on('data', data => {\n      store.commit('receiveData', 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生成 State 快照\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    // 保存状态，用于下一次 mutation\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上面插件会默认启用。在发布阶段，你需要使用 webpack 的 DefinePlugin 或者是 Browserify 的 envify 使 process.env.NODE_ENV !== 'production' 为 false。\n内置 Logger 插件\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, // 自动展开记录的 mutation\n  filter (mutation, stateBefore, stateAfter) {\n    // 若 mutation 需要被记录，就让它返回 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    // mutation 按照 { type, payload } 格式记录\n    // 我们可以按任意方式格式化\n    return mutation.type\n  },\n  logger: console, // 自定义 console 实现，默认为 `console`\n})\n\n日志插件还可以直接通过  标签引入，它会提供全局方法 createVuexLogger。\n要注意，logger 插件会生成状态快照，所以仅在开发环境使用。\n"},"strict.html":{"url":"strict.html","title":"严格模式","keywords":"","body":"严格模式\n开启严格模式，仅需在创建 store 的时候传入 strict: true：\nconst store = new Vuex.Store({\n  // ...\n  strict: true\n})\n\n在严格模式下，无论何时发生了状态变更且不是由 mutation 函数引起的，将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。\n开发环境与发布环境\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 的 state 上使用 v-model 会比较棘手：\n\n\n假设这里的 obj 是在计算属性中返回的一个属于 Vuex store 的对象，在用户输入时，v-model 会试图直接修改 obj.message。在严格模式中，由于这个修改不是在 mutation 函数中执行的, 这里会抛出一个错误。\n用“Vuex 的思维”去解决这个问题的方法是：给  中绑定 value，然后侦听 input 或者 change 事件，在事件回调中调用 action:\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下面是 mutation 函数：\n// ...\nmutations: {\n  updateMessage (state, message) {\n    state.obj.message = message\n  }\n}\n\n双向绑定的计算属性\n必须承认，这样做比简单地使用“v-model + 局部状态”要啰嗦得多，并且也损失了一些 v-model 中很有用的特性。另一个方法是使用带有 setter 的双向绑定计算属性：\n\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 中的 mutation 和 action 进行单元测试。\n测试 Mutation\nMutation 很容易被测试，因为它们仅仅是一些完全依赖参数的函数。这里有一个小技巧，如果你在 store.js 文件中定义了 mutation，并且使用 ES2015 模块功能默认输出了 Vuex.Store 的实例，那么你仍然可以给 mutation 取个变量名然后把它输出去：\nconst state = { ... }\n\n// `mutations` 作为命名输出对象\nexport const mutations = { ... }\n\nexport default new Vuex.Store({\n  state,\n  mutations\n})\n\n下面是用 Mocha + Chai 测试一个 mutation 的例子（实际上你可以用任何你喜欢的测试框架）：\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// 解构 `mutations`\nconst { increment } = mutations\n\ndescribe('mutations', () => {\n  it('INCREMENT', () => {\n    // 模拟状态\n    const state = { count: 0 }\n    // 应用 mutation\n    increment(state)\n    // 断言结果\n    expect(state.count).to.equal(1)\n  })\n})\n\n测试 Action\nAction 应对起来略微棘手，因为它们可能需要调用外部的 API。当测试 action 的时候，我们需要增加一个 mocking 服务层——例如，我们可以把 API 调用抽象成服务，然后在测试文件中用 mock 服务回应 API 调用。为了便于解决 mock 依赖，可以用 webpack 和  inject-loader 打包测试文件。\n下面是一个测试异步 action 的例子：\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// 使用 require 语法处理内联 loaders。\n// inject-loader 返回一个允许我们注入 mock 依赖的模块工厂\nimport { expect } from 'chai'\nconst actionsInjector = require('inject-loader!./actions')\n\n// 使用 mocks 创建模块\nconst actions = actionsInjector({\n  '../api/shop': {\n    getProducts (cb) {\n      setTimeout(() => {\n        cb([ /* mocked response */ ])\n      }, 100)\n    }\n  }\n})\n\n// 用指定的 mutaions 测试 action 的辅助函数\nconst testAction = (action, args, 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  // 用模拟的 store 和参数调用 action\n  action({ commit, state }, ...args)\n\n  // 检查是否没有 mutation 被 dispatch\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, [], {}, [\n      { type: 'REQUEST_PRODUCTS' },\n      { type: 'RECEIVE_PRODUCTS', payload: { /* mocked response */ } }\n    ], done)\n  })\n})\n\n测试 Getter\n如果你的 getter 包含很复杂的计算过程，很有必要测试它们。Getter 的测试与 mutation 一样直截了当。\n测试一个 getter 的示例：\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    // 模拟 getter\n    const filterCategory = 'fruit'\n\n    // 获取 getter 的结果\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如果你的 mutation 和 action 编写正确，经过合理地 mocking 处理之后这些测试应该不依赖任何浏览器 API，因此你可以直接用 webpack 打包这些测试文件然后在 Node 中执行。换种方式，你也可以用 mocha-loader 或 Karma + karma-webpack在真实浏览器环境中进行测试。\n在 Node 中执行测试\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\n安装 mocha-loader。\n把上述 webpack 配置中的 entry 改成 'mocha-loader!babel-loader!./test.js'。\n用以上配置启动 webpack-dev-server。\n访问 localhost:8080/webpack-dev-server/test-bundle。\n\n使用 Karma + karma-webpack 在浏览器中执行测试\n详见 vue-loader documentation。\n"},"hot-reload.html":{"url":"hot-reload.html","title":"热重载","keywords":"","body":"热重载\n使用 webpack 的 Hot Module Replacement API，Vuex 支持在开发过程中热重载 mutation、module、action 和 getter。你也可以在 Browserify 中使用 browserify-hmr 插件。\n对于 mutation 和模块，你需要使用 store.hotUpdate() 方法：\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  // 使 action 和 mutation 成为可热重载模块\n  module.hot.accept(['./mutations', './modules/a'], () => {\n    // 获取更新后的模块\n    // 因为 babel 6 的模块编译格式问题，这里需要加上 `.default`\n    const newMutations = require('./mutations').default\n    const newModuleA = require('./modules/a').default\n    // 加载新模块\n    store.hotUpdate({\n      mutations: newMutations,\n      modules: {\n        a: newModuleA\n      }\n    })\n  })\n}\n\n参考热重载示例 counter-hot。\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\nVuex store 实例的根 state 对象。详细介绍\n如果你传入返回一个对象的函数，其返回的对象会被用作根 state。这在你想要重用 state 对象，尤其是对于重用 module 来说非常有用。详细介绍\n\n\n\nmutations\n\n类型: { [type: string]: Function }\n在 store 上注册 mutation，处理函数总是接受 state 作为第一个参数（如果定义在模块中，则为模块的局部状态），payload 作为第二个参数（可选）。\n详细介绍\n\n\n\nactions\n\n类型: { [type: string]: Function }\n在 store 上注册 action。处理函数总是接受 context 作为第一个参数，payload 作为第二个参数（可选）。\ncontext 对象包含以下属性：\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\n类型: { [key: string]: Function }\n\n在 store 上注册 getter，getter 方法接受以下参数：\n  state,     // 如果在模块中定义则为模块的局部状态\n  getters,   // 等同于 store.getters\n  当定义在一个模块里时会特别一些：\n  state,       // 如果在模块中定义则为模块的局部状态\n  getters,     // 等同于 store.getters\n  rootState    // 等同于 store.state\n  rootGetters  // 所有 getters\n  注册的 getter 暴露为 store.getters。\n  详细介绍\n\nmodules\n\n类型: Object\n包含了子模块的对象，会被合并到 store，大概长这样：\n{\n  key: {\n    state,\n    namespaced?,\n    mutations,\n    actions?,\n    getters?,\n    modules?\n  },\n  ...\n}\n\n与根模块的选项一样，每个模块也包含 state 和 mutations 选项。模块的状态使用 key 关联到 store 的根状态。模块的 mutation 和 getter 只会接收 module 的局部状态作为第一个参数，而不是根状态，并且模块 action 的 context.state 同样指向局部状态。\n详细介绍\n\n\n\nplugins\n\n类型: Array\n一个数组，包含应用在 store 上的插件方法。这些插件直接接收 store 作为唯一参数，可以监听 mutation（用于外部地数据持久化、记录或调试）或者提交 mutation （用于内部数据，例如 websocket 或 某些观察者）\n详细介绍\n\n\n\nstrict\n\n类型: Boolean\n默认值: false\n使 Vuex store 进入严格模式，在严格模式下，任何 mutation 处理函数以外修改 Vuex state 都会抛出错误。\n详细介绍\n\n\n\n\nVuex.Store 实例属性\n\nstate\n\n类型: Object\n根状态，只读。\n\n\n\ngetters\n\n类型: Object\n暴露出注册的 getter，只读。\n\n\n\n\nVuex.Store 实例方法\n\ncommit(type: string, payload?: any, options?: Object) | commit(mutation: Object, options?: Object)\n提交 mutation。options 里可以有 root: true，它允许在命名空间模块里提交根的 mutation。详细介绍\n\ndispatch(type: string, payload?: any, options?: Object) | dispatch(action: Object, options?: Object)\n分发 action。options 里可以有 root: true，它允许在命名空间模块里分发根的 action。返回一个解析所有被触发的 action 处理器的 Promise。详细介绍\n\nreplaceState(state: Object)\n替换 store 的根状态，仅用状态合并或时光旅行调试。\n\nwatch(getter: Function, cb: Function, options?: Object)\n响应式地监测一个 getter 方法的返回值，当值改变时调用回调函数。Getter 接收 store 的 state 作为第一个参数，其 getter 作为第二个参数。最后接收一个可选的对象参数表示 Vue 的 vm.$watch 方法的参数。\n要停止监测，直接调用返回的处理函数。\n\nsubscribe(handler: Function)\n注册监听 store 的 mutation。handler 会在每个 mutation 完成后调用，接收 mutation 和经过 mutation 后的状态作为参数：\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订阅 store 的 action。handler 会在每个 action 分发的时候调用并接收 action 描述和当前的 store 的 state 这两个参数：\nstore.subscribeAction((action, state) => {\n  console.log(action.type)\n  console.log(action.payload)\n})\n\n该功能常用于插件。详细介绍\n\nregisterModule(path: string | Array, module: Module, options?: Object)\n注册一个动态模块。详细介绍\noptions 可以包含 preserveState: true 以允许保留之前的 state。用于服务端渲染。\n\nunregisterModule(path: string | Array)\n卸载一个动态模块。详细介绍\n\nhotUpdate(newOptions: Object)\n热替换新的 action 和 mutation。详细介绍\n\n\n组件绑定的辅助函数\n\nmapState(namespace?: string, map: Array | Object): Object\n为组件创建计算属性以返回 Vuex store 中的状态。详细介绍\n第一个参数是可选的，可以是一个命名空间字符串。详细介绍\n\nmapGetters(namespace?: string, map: Array | Object): Object\n为组件创建计算属性以返回 getter 的返回值。详细介绍\n第一个参数是可选的，可以是一个命名空间字符串。详细介绍\n\nmapActions(namespace?: string, map: Array | Object): Object\n创建组件方法分发 action。详细介绍\n第一个参数是可选的，可以是一个命名空间字符串。详细介绍\n\nmapMutations(namespace?: string, map: Array | Object): Object\n创建组件方法提交 mutation。详细介绍\n第一个参数是可选的，可以是一个命名空间字符串。详细介绍\n\ncreateNamespacedHelpers(namespace: string): Object\n创建基于命名空间的组件绑定辅助函数。其返回一个包含 mapState、mapGetters、mapActions 和 mapMutations 的对象。它们都已经绑定在了给定的命名空间上。详细介绍\n\n\n"}}}