Browse Source
Create an EventBus and update page title once conversation received
Create an EventBus and update page title once conversation received
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>pull/2323/head
3 changed files with 58 additions and 1 deletions
-
29src/App.vue
-
6src/components/Navigation/ConversationsList/ConversationsList.vue
-
24src/services/EventBus.js
@ -0,0 +1,24 @@ |
|||
/** |
|||
* @copyright Copyright (c) 2019 Marco Ambrosini <marcoambrosini@pm.me> |
|||
* |
|||
* @author Marco Ambrosini <marcoambrosini@pm.me> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU Affero General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU Affero General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
* |
|||
*/ |
|||
|
|||
import Vue from 'vue' |
|||
export const EventBus = new Vue() |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue