separate reply button to its own component, add changelog entry

This commit is contained in:
Shpuld Shpuldson 2020-09-07 10:35:49 +03:00
parent 40ca0b394e
commit f9ac23b9a9
5 changed files with 48 additions and 27 deletions

View file

@ -0,0 +1,12 @@
const ReplyButton = {
name: 'ReplyButton',
props: ['status', 'replying'],
computed: {
loggedIn () {
return !!this.$store.state.users.currentUser
}
}
}
export default ReplyButton