aboutsummaryrefslogtreecommitdiff
path: root/src/components/reply_button/reply_button.js
blob: 2295765040b0508fda5e036a86434093827f48ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12

const ReplyButton = {
  name: 'ReplyButton',
  props: ['status', 'replying'],
  computed: {
    loggedIn () {
      return !!this.$store.state.users.currentUser
    }
  }
}

export default ReplyButton