nuxt-emoji-picker
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

Nuxt Emoji Picker

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

Local development
# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

Readme

Keywords

none

Package Sidebar

Install

npm i nuxt-emoji-picker

Weekly Downloads

113

Version

1.1.0

License

MIT

Unpacked Size

6.58 kB

Total Files

12

Last publish

Collaborators

  • selemondev