diff options
Diffstat (limited to 'src/site/components/grid')
| -rw-r--r-- | src/site/components/grid/Grid.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/site/components/grid/Grid.vue b/src/site/components/grid/Grid.vue index 279472c..a06eabf 100644 --- a/src/site/components/grid/Grid.vue +++ b/src/site/components/grid/Grid.vue @@ -198,6 +198,8 @@ </template> <script> +import { mapState } from 'vuex'; + import Waterfall from './waterfall/Waterfall.vue'; import WaterfallItem from './waterfall/WaterfallItem.vue'; @@ -246,9 +248,9 @@ export default { }; }, computed: { - user() { - return this.$store.state.user; - }, + ...mapState({ + user: state => state.auth.user + }), blank() { return require('@/assets/images/blank.png'); }, |