如果 使用了 module 和 namespace
state 數據:=> this.$store.state.User.info (user 是模塊名字. info 是 state 里面的屬性名字)
getters 數據: => this.$store.getters['User/getUserInfo'] (user namespace,模塊名, getUserInfo 是 getter 的名字)
mutations => this.$store.commit( 'AppKeepAlive/remove', name); (AppKeepAlive 模塊名, remove方法名, name 是荷載數據 payload)