An Emoji picker component for your Nuxt 3 project.
- โ Slot for a custom button
- ๐ง Props for theme, placement etc
- ๐ช Saves recently used into a cookie
- ๐จ Uses Tippy js to display picker (vue-tippy)
Open the playground on StackBlitz.
Install the layer:
npm i -D nuxt-emoji
Add the layer in the extends
array in nuxt.config.ts
:
export default defineNuxtConfig({
extends: ['nuxt-emoji'],
})
Now you can use the emoji picker component anywhere in your project:
<template>
<!-- Basic Usage -->
<NuxtEmoji @on-select="select" />
<!-- With Props -->
<NuxtEmoji @on-select="select" :theme="light" :placement="bottom" />
<!-- With Custom Button -->
<NuxtEmoji @on-select="select">
<template v-slot:button>
<button>Custom Button ๐</button>
</template>
</NuxtEmoji>
</template>
<script setup>
function select(emoji) {
// do something with your emoji
}
</script>
on-select
When the user clicks an emoji, we fire an on-select event that contains the emoji so you can do something with it.
button
You can pass in a custom button using a button
named slot. This will be the button that launches the component when clicked.
You can pass props to the component to change the style & placement. We'll continue to add on this as requested.
placement
Where the tippy popup showing the emoji picker will show. Options are:
-
top-start
-
top-end
-
right
-
right-start
-
right-end
-
bottom
-
bottom-start
-
bottom-end
-
left
-
left-start
-
left-end
-
auto
-
auto-start
-
auto-end
Theme
The main theme of component. Only options are light
(default) and dark