New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nuxt-emoji-picker

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-emoji-picker

Simple and Powerful Emoji Picker for Nuxt 3 ✨

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
74
decreased by-60.43%
Maintainers
1
Weekly downloads
 
Created
Source

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

FAQs

Package last updated on 20 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc