diff options
| author | eal <eal@waifu.club> | 2018-02-01 18:19:36 +0200 |
|---|---|---|
| committer | eal <eal@waifu.club> | 2018-02-01 18:19:36 +0200 |
| commit | 36e68fba961a46fcd6dda1a57471dcf10775c511 (patch) | |
| tree | 21dd7deace28b33296946714dc1c9561c6b4d30c /src/App.js | |
| parent | 90175a1872cace45ae0e410ed283fab25c9e42cd (diff) | |
| parent | 92289e545a62bd28ea336c5d712a05445e0e20ab (diff) | |
Merge branch 'develop' into feature/normal-emoji-completion
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,6 +2,7 @@ import UserPanel from './components/user_panel/user_panel.vue' import NavPanel from './components/nav_panel/nav_panel.vue' import Notifications from './components/notifications/notifications.vue' import UserFinder from './components/user_finder/user_finder.vue' +import ChatPanel from './components/chat_panel/chat_panel.vue' export default { name: 'app', @@ -9,7 +10,8 @@ export default { UserPanel, NavPanel, Notifications, - UserFinder + UserFinder, + ChatPanel }, data: () => ({ mobileActivePanel: 'timeline' @@ -21,7 +23,8 @@ export default { }, logoStyle () { return { 'background-image': `url(${this.$store.state.config.logo})` } }, style () { return { 'background-image': `url(${this.background})` } }, - sitename () { return this.$store.state.config.name } + sitename () { return this.$store.state.config.name }, + chat () { return this.$store.state.chat.channel } }, methods: { activatePanel (panelName) { |
