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

27 行
495 B
JavaScript
Raw 通常表示 履歴

2019-03-30 00:49:32 +09: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