书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 432 个相关结果.
  • Reducing Boilerplate

    Reducing Boilerplate in Tests The Posts Component Vuex/VueRouter Factory Functions The Tests (before refactor) A Custom createWrapper Function Improving the createWrapper fu...
  • 插件

    1277 2018-12-10 《Vue.js 技术揭秘》
    插件 Logger 插件 总结 插件 Vuex 除了提供的存取能力,还提供了一种插件能力,让我们可以监控 store 的变化过程来做一些事情。 Vuex 的 store 接受 plugins 选项,我们在实例化 Store 的时候可以传入插件,它是一个数组,然后在执行 Store 构造函数的时候,会执行这些插件: const ...
  • API Reference

    503 2020-12-20 《Vuex v4.0 Document》
    API Reference Store createStore Store Constructor Options state mutations actions getters modules plugins strict devtools Store Instance Properties state getters Stor...
  • 表单处理

    890 2019-02-28 《Vuex 中文指南》
    表单处理 双向绑定的计算属性 表单处理 在 scrimba 上尝试这节课 当在严格模式中使用 Vuex 时,在属于 Vuex 的 state 上使用 v-model 会比较棘手: < input v-model = " obj.message " > 假设这里的 obj 是在计算属性中返回的一个属于 Vu...
  • Context

    API: The Context Universal keys app (NuxtAppOptions) store (Vuex Store) route (Vue Router Route) params (Object) query (Object) env (Object) isDev (Boolean) isHMR (Boolean) ...
  • Hot Reloading

    491 2020-12-20 《Vuex v4.0 Document》
    Hot Reloading Dynamic module hot reloading Hot Reloading Vuex supports hot-reloading mutations, modules, actions and getters during development, using webpack’s Hot Module Rep...
  • 渲染器进程

    渲染器进程 关于 vue 和 vuex vue 组件 vue 路由 注意 vuex 模块 渲染器进程 由于 Electron 使用 Chromium 显示网页,那么,Chromium 的多进程架构也被使用。Electron 中的每个网页都在自己的进程中运行,称为渲染器进程 (renderer process)。 在正常的浏览器中,网...
  • context

    The Context Universal keys app store route params query env isDev isHMR redirect error \$config Server-side keys req Res beforeNuxtRender Client-side keys from nux...
  • Mutations

    357 2020-12-20 《Vuex v4.0 Document》
    Mutations Commit with Payload Object-Style Commit Using Constants for Mutation Types Mutations Must Be Synchronous Committing Mutations in Components On to Actions Mutati...
  • 页面通讯

    页面通信 页面通信 页面通信 该示例为小程序间的页面通讯,利用 vuex 实现。 在 mpvue 框架中使用 vuex 与在 vue 中使用是一样的体验。 1.建立相关的目录结构 2.在 src/main.js 中将 store 挂载到 vue 原型下面 Vue . prototype . $store = store ; ...