Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 698 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 698 Bytes

vue-misskey-embed

Misskey embeds library for Vue 3.

installation

※Currently not published yet.

npm install @misskey-dev/vue-misskey-embed

Usage

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>

License

MIT