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

    538 2020-12-20 《Vuex v3.x Document》
    Testing Testing Mutations Testing Actions Testing Getters Running Tests Running in Node Running in Browser Running in Browser with Karma + karma-webpack Testing Try this...
  • CDN

    CDN 我个人暂时不使用CDN 引入第三方依赖的原因: 使用方式 CDN 你可以通过执行npm run preview -- --report 来分析webpack 打包之后的结果,观察各个静态资源的大小。你可以发现占用空间最多的是第三方依赖。如vue 、element-ui 、 ECharts 等。 你可以使用 CDN 外链的方式引入这些第...
  • Actions

    695 2020-12-20 《Vuex v3.x 教程》
    Action 分发 Action 在组件中分发 Action 组合 Action Action 在 scrimba 上尝试这节课 Action 类似于 mutation,不同在于: Action 提交的是 mutation,而不是直接变更状态。 Action 可以包含任意异步操作。 让我们来注册一个简单的 action: const...
  • 商品详情页

    1602 2019-06-17 《Vuejs 中文教程》
    商品详情页 1. 新增路由 2. 新增vue页面 3. 添加物品到购物车 看效果 总结 商品详情页 当用户在商品列表页中点击时,就会跳转到该页面。 步骤如下: 1. 新增路由 向src/router/index.js中增加: import GoodsDetails from '@/views/shops/goods_...
  • Welcome

    What is this guide? Further Reading This book is written for Vue.js 3 and Vue Test Utils v2. Find the Vue.js 2 version here . What is this guide? Welcome to the Vue.js testi...
  • Welcome

    What is this guide? Further Reading This book is written for Vue.js 2 and Vue Test Utils v1. Find the Vue.js 3 version here . What is this guide? Welcome to the Vue.js testi...
  • README

    mpvue-weui 相关说明 前言 踩坑文档 WeUI 开发预览 效果 重写状态 版本日志 v1.0.5 v1.0.4 v1.0.3 v1.0.2 v1.0.1 v1.0.0 结束语 持续维护… mpvue-weui 用 vue 写小程序,使用 mpvue 框架重写 WeUI。 相关说明 ...
  • 8. 登录状态的保存

    登录成功保存数据 store 当用户登录成功之后,需要将当前用户的登录信息保存在本地,方便后面使用。具体实现如下: 登录成功保存数据 在登录操作执行成功之后,通过commit操作将数据提交到store中,核心代码如下: this . postRequest ( '/login' , { username : this . l...
  • Action

    1118 2019-02-28 《Vuex 中文指南》
    Action 分发 Action 在组件中分发 Action 组合 Action Action 在 scrimba 上尝试这节课 Action 类似于 mutation,不同在于: Action 提交的是 mutation,而不是直接变更状态。 Action 可以包含任意异步操作。让我们来注册一个简单的 action: const ...
  • Plugins

    Plugins External Packages Vue Plugins ES6 plugins Inject in $root & context Inject into Vue instances Inject into context Combined inject Client-side only Name conventional ...