<img width="942" height="398" alt="Image" src="https://github.com/user-attachments/assets/2fb85028-da46-4be4-8010-16eec7dfa9a2" /> reproduction: step1: install package ```shell pnpm add streamdown-vue ``` step2: import package ```vue <template> <StreamMarkdown class="prose" :content="text" /> </template> <script setup lang="ts"> import { StreamMarkdown } from 'streamdown-vue'; const text = ref(''); </script> ``` @Saluana
reproduction:
step1: install package
step2: import package
@Saluana