1.1.0 • Published 1 year ago

nuxt-emoji-picker v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

npm-version-src npm-downloads-src nuxt-src

Features

  • Add emojis to your Nuxt 3 applocation effortlessly

Quick Setup

  1. Install the module in your Nuxt application with one command:
npx nuxi@latest module add nuxt-emoji-picker

That's it! You can now use nuxt-emoji-picker in your Nuxt app ✨

Usage

You can use the nuxt-emoji-picker component as shown below:

<template>

  <NuxtEmojiPicker
    :hide-search="false"
    theme="light"
    @select="onSelectEmoji"
  />

</template>

<script setup>
import { ref } from 'vue'

const selectedEmoji = ref()

const onSelectEmoji = (emoji) => {
  selectedEmoji.value = emoji.i
}
</script>

You can check out all the available props and methods here

Contribution

1.1.0

1 year ago