it-tools/src/tools/paste-as-markdown/paste-as-markdown.vue
2024-08-09 21:20:10 +02:00

13 lines
337 B
Vue

<script setup lang="ts">
import { subscribe } from '@github/paste-markdown';
// Subscribe the behavior to the textarea.
subscribe(document.querySelector('.paste-zone textarea') as never);
</script>
<template>
<c-card title="Paste in Markdown" class="paste-zone">
<textarea-copyable language="markdown" />
</c-card>
</template>