Open
Description
For example
<template>
<Monaco :value="value" />
</template>
<script setup>
import Monaco from '@vue/repl/monaco-editor'
const value = `<template>xxx</template>`
</script>
Or hide the preview
<template>
<Repl :editor="Monaco" :show-preview="false" />
</template>
<script setup>
import { Repl } from '@vue/repl'
import Monaco from '@vue/repl/monaco-editor'
</script>