Misskey embeds library for Vue 3.
※Currently not published yet.
npm install @misskey-dev/vue-misskey-embed
Use Note embed in your component.
<script lang="ts" setup>
import { Note } from 'vue-misskey-embed';
</script>
<template>
<!-- You can use note url -->
<Note url="https://misskey.example.com/notes/9x8zezlzpd" />
<!-- You can also use domain and noteId -->
<Note domain="misskey.example.com" note-id="9x8zezlzpd" />
</template>