0๐
โ
<template>
// First Edit: remove 'this'
<div>TODO Athlete Profile {{ userProfile }}
<b-button class="btn btn-danger" v-on:click="logout()">Logout</b-button>
</div>
</template>
<script>
// Second edit: correct spelling of 'mapState'
import { mapState } from 'vuex'
// TODO Athlete profile
export default {
title: 'Profile',
// Third edit: move 'computed' outside of the 'methods' block
computed: {
...mapState(['userProfile'])
},
methods: {
logout() {
this.$store.dispatch('logout')
},
}
}
</script>
Source:stackexchange.com