Skip to content

Emoji

EEmoji is a UI element that provides a simple interface to add emoji picker functionality to any input field in your web application. We have used EEmoji component creating our chat app.

Usage

vue

<template>
  <EEmoji @input="inputEmoji"/>
</template>

<script setup>
  const message = ref("");
  const inputEmoji = (emoji) => {
    message.value += "You added this emoji: " + emoji;

  };
</script>

Props

For EEmoji component, the following props are available:

PropTypeDefaultNote
modelValueString-Displya selected Emoji(s).

Emits

The EEmoji component contains following emits.

EmitDescription
update:modelValueControls the selected emoji(s).

COPYRIGHT