Closed buksy90 closed 1 year ago
The hope can help you
<script setup lang="ts">
import { ref, watch } from 'vue'
const editorRef = ref(null)
onMounted(() => {
editorRef.value!.$editor.updateOptions({
minimap: { enabled: false },
})
})
</script>
<template>
<MonacoEditor
ref="editorRef"
theme="vs-dark"
/>
</template>
Hi,
could you please add more documentation on how to change Monaco config? I'm mostly interested in how to disable the minimap.
Thanks