akkoma-fe/src/components/emoji-selector/emoji-selector.js

27 lines
495 B
JavaScript
Raw Normal View History

2019-03-29 15:49:32 +00:00
const EmojiSelector = {
data () {
return {
open: false
}
},
mounted () {
console.log(this.$store.state.instance.emoji)
console.log(this.$store.state.instance.customEmoji)
},
methods: {
togglePanel () {
this.open = !this.open
}
},
computed: {
standardEmoji () {
return this.$store.state.instance.emoji || []
},
customEmoji () {
return this.$store.state.instance.customEmoji || []
}
}
}
export default EmojiSelector