Customize UI

Change UI Locale

// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['nuxt-monaco-editor'],
  monacoEditor: { lang: 'ja' }
})

Will show (almost) all UI text in Japanese.

Available locales are listed here.

Change UI Theme

<template>
  <MonacoEditor :options="{ theme: 'vs-dark' }" />
</template>

Will show UI in dark mode.