vue中$store的用法

Posted schon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中$store的用法相关的知识,希望对你有一定的参考价值。

Store就是把它们联系到一起的对象。Store有以下职责:

  • 维持应用的state:
  • 提供getState( )方法获取state;
  • 提供dispatch(action)方法更新state;
  • 通过subscribe(listener)注册监听器;
  • 通过subscribe(listener)返回的函数注销监听器

前台搭配mapGetter使用,引入后,放在computed中

  •   import { mapGetters } from ‘vuex‘;
  • computed: {
    ...mapGetters([
    ‘getLogin‘,
    ‘getuname‘,
    ‘getpwd‘
    ])
    },






以上是关于vue中$store的用法的主要内容,如果未能解决你的问题,请参考以下文章

vue state

vue$store返回值

vuestore大小

vue--store中各个属性

vue 中timestamp的用法

vue中Promise的用法