export const mixin = {
computed: {
...mapState({
// It does exist .. just not yet (parse error below)
currentUser: state => state.user.currentUser,
isDealer: state => state.user.profile && state.user.profile && !!state.user.profile.dealer,
isAdmin: state => state.user && state.user.admin && state.user.admin == true
})
}
}
// 124:32 Property 'user' does not exist on type '{}' for state ^