nuxt-emoji-picker
v1.1.0
Published
Simple and Powerful Emoji Picker for Nuxt 3 ✨
Downloads
843
Readme
Features
- Add emojis to your Nuxt 3 applocation effortlessly
Quick Setup
- 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
# 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