Files
oa/documentation/markdown-editor/v-markdown-editor-base-documentation.md
2025-05-24 01:49:48 +09:00

835 B

state
state
markdown
## Hello Vuero This is a **Markdown** preview content.

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>