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

    663 2020-12-20 《Vuex v3.x 教程》
    Module 模块的局部状态 命名空间 在带命名空间的模块内访问全局内容(Global Assets) 在带命名空间的模块注册全局 action 带命名空间的绑定函数 给插件开发者的注意事项 模块动态注册 保留 state 模块重用 Module 在 Scrimba 上尝试这节课 由于使用单一状态树,应用的所有状态会集中到一个比...
  • Modules

    373 2020-12-20 《Vuex v4.0 Document》
    Modules Module Local State Namespacing Accessing Global Assets in Namespaced Modules Register Global Action in Namespaced Modules Binding Helpers with Namespace Caveat for Plug...
  • 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 nuxtState Th...
  • Plugins

    415 2020-12-20 《Vuex v4.0 Document》
    Plugins Committing Mutations Inside Plugins Taking State Snapshots Built-in Logger Plugin Plugins Try this lesson on Scrimba Vuex stores accept the plugins option that ex...
  • Storybook for Vue

    Storybook for Vue Automatic setup Manual setup Step 1: Add dependencies Add @storybook/vue Add peer dependencies Step 2: Add an npm script Step 3: Create the config file St...
  • 购物车

    1268 2019-06-17 《Vuejs 中文教程》
    购物车 1. 添加购物车 路由 2. 添加查看购物车的vue页面 3. 增加对应的组件 看效果 总结 购物车 购物车具备两个功能: 保存用户需要的数据 清空 所以,我们使用vuex来实现购物车 1. 添加购物车 路由 向 文件 src/router/index.js 中增加内容: import Cart from...
  • 页面通讯

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

    1413 2020-07-27 《Gitlab 中文文档》
    Testing levels Testing levels Unit tests Frontend unit tests When to use unit tests When not to use unit tests What to mock in unit tests What not to mock in unit tests Front...
  • The 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 nuxt...
  • Strict Mode

    434 2020-12-20 《Vuex v4.0 Document》
    Strict Mode Development vs. Production Strict Mode To enable strict mode, simply pass in strict: true when creating a Vuex store: const store = createStore ({ // ......