25 lines
475 B
JavaScript
25 lines
475 B
JavaScript
|
module.exports = {
|
||
|
props: [
|
||
|
'user', 'teams', 'currentTeam',
|
||
|
'hasUnreadNotifications', 'hasUnreadAnnouncements'
|
||
|
],
|
||
|
|
||
|
|
||
|
methods: {
|
||
|
/**
|
||
|
* Show the user's notifications.
|
||
|
*/
|
||
|
showNotifications() {
|
||
|
Bus.$emit('showNotifications');
|
||
|
},
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Show the customer support e-mail form.
|
||
|
*/
|
||
|
showSupportForm() {
|
||
|
Bus.$emit('showSupportForm');
|
||
|
}
|
||
|
}
|
||
|
};
|