drop/server/components/EmojiText.vue

16 lines
333 B
Vue
Raw Permalink Normal View History

<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>