mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:33:32 +09:00
835 B
835 B
state
| state | ||
|---|---|---|
|
VMarkdownEditor
Vuero ship <VMarkdownEditor /> component that combines an accessible
Markdown editor with a live preview using <VMarkdownPreview />.
Under the hood, this component uses textarea-markdown-editor
exposed api to provide a powerfull Markdown editor for vue 3 with
extendable commands support.
<script setup lang="ts">
const markdown = ref('## Hello Vuero\n\nThis is a **Markdown** preview content.')
</script>
<template>
<VMarkdownEditor v-model="markdown" autogrow />
</template>