Files
drop/components/EmojiText.vue
Husky 1eaec4c3e8 Switch to nuxt assets for emojis (#311)
* switch to nuxt assets for emojis

* add auth to emoji endpoint

* fix cache control header

* fix type error
2026-01-14 14:49:58 +11:00

16 lines
333 B
Vue

<template>
<img ref="emojiEl" class="inline-block emoji" :src="url" :alt="emoji" />
</template>
<script lang="ts" setup>
import twemoji from "@discordapp/twemoji";
const props = defineProps<{
emoji: string;
}>();
const url = computed(() => {
return `/api/v1/emoji/${twemoji.convert.toCodePoint(props.emoji)}`;
});
</script>