A new emoji / gif picker for your app ! Based on discord.
This components is available only in vue3.
🚧 Rework in typescript and composition-api soon.
npm install vue3-discordpickerimport Vue from 'vue'
import DiscordPicker from 'vue3-discordpicker'
Vue.use(DiscordPicker, /* { default options with global component } */)import DiscordPicker from 'vue3-discordpicker'
export default {
components: {
DiscordPicker
}
}| Name | Type | Default | Description |
|---|---|---|---|
| input | Boolean |
false | Load input w/ autocomplete |
| value | String, Number |
null | v-model to input value |
| categories | Array |
true | Display the mask on first load |
| gifFormat | String |
Return gif link with markdown format or html format (default: nothing) | |
| apiKey | String |
API_KEY tenor.com (free, register here: https://tenor.com/gifapi) (if no key: gif not appear) | |
| showUpload | Boolean |
Display upload icon at left (with emit method) | |
| showEmoji | Boolean |
Display emoji icon | |
| sources | Object |
Set new source url for all image |
"search": String
"gif": String
"emoji": String
"category": String (add %REPLACE% in your URL to change with slug, example: https://rvrb.one/vue-discord-emojipicker/categories/%REPLACE%.svg transform into https://rvrb.one/vue-discord-emojipicker/categories/animals.svg`)
"variation": String (same at category, example: https://rvrb.one/vue-discord-emojipicker/variations/variation_%REPLACE%.svg transform into https://rvrb.one/vue-discord-emojipicker/variations/variation_0.svg (0 - 4))
All categories list:
['people', 'animals', 'foods', 'travel', 'activities', 'objects', 'symbols', 'flags']
