aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
blob: 93f8f36148039ceaf17840bf8f607f35a7118ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'

export default {
  name: 'app',
  components: {
    UserPanel,
    NavPanel,
    Notifications
  },
  computed: {
    currentUser () { return this.$store.state.users.currentUser },
    style () { return { 'background-image': `url(${this.currentUser.background_image})` } }
  }
}