2020-10-20 03:38:49 +11:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import { faReply } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(faReply)
|
2020-09-07 17:35:49 +10:00
|
|
|
|
|
|
|
const ReplyButton = {
|
|
|
|
name: 'ReplyButton',
|
|
|
|
props: ['status', 'replying'],
|
|
|
|
computed: {
|
|
|
|
loggedIn () {
|
|
|
|
return !!this.$store.state.users.currentUser
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ReplyButton
|