initial attempts at making emoji-picker somewhat extensible

This commit is contained in:
Henry Jameson 2019-08-12 14:20:08 +03:00
parent 036882d27c
commit 579b5c9e77
3 changed files with 144 additions and 146 deletions

View file

@ -6,7 +6,8 @@ const EmojiPicker = {
data () {
return {
keyword: '',
activeGroup: 'standard'
activeGroup: 'standard',
showingAdditional: false
}
},
methods: {
@ -28,6 +29,9 @@ const EmojiPicker = {
this.activeGroup = key
}
})
},
toggleAdditional (value) {
this.showingAdditional = value
}
},
computed: {