![](https://img.haomeiwen.com/i6587214/df1a3a9817ca147b.png)
mapGetters辅助函数的使用
<script>
import { mapGetters } from 'vuex'
...
export default {
components: {
...
},
computed: {
...mapGetters([
'sidebar',
'avatar'
])
},
methods: {
toggleSideBar() {
this.$store.dispatch('app/toggleSideBar')
},
async logout() {
await this.$store.dispatch('user/logout')
this.$router.push(`/login?redirect=${this.$route.fullPath}`)
}
}
}
</script>
网友评论