1. 程式人生 > >vue中$store的用法

vue中$store的用法

dispatch isp 一起 log from code etl 引入 應用

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的用法