nuxt-monaco-editor
nuxt-monaco-editor

Integrate monaco-editor with Nuxt

Nuxt Monaco Editor

npm versionLicense: MITCodacy BadgeTest result

Integrate monaco-editor with Nuxt

Install

npx nuxi@latest module add nuxt-monaco-editor

Don't forget to install monaco-editor.

Setup

  1. Add this module to the Nuxt config
export default defineNuxtConfig({
  modules: ["nuxt-monaco-editor"],
});
  1. (Optional) Configure the module
export default defineNuxtConfig({
  monacoEditor: {
    // These are default values:
    locale: "en",
    componentName: {
      codeEditor: "MonacoEditor",
      diffEditor: "MonacoDiffEditor",
    },
  },
});
  1. Use the component in your pages or components
<template>
  <MonacoEditor v-model="value" lang="typescript" />
</template>

<script lang="ts" setup>
const value = ref("");
</script>

Development

  • Run git submodule update --init --recursive.
  • Run pnpm dev:prepare to generate type stubs.
  • Use pnpm dev to start playground in development mode.
  • Run pnpm exec playwright-core install --with-deps to install dependencies for testing.
  • Run pnpm test to run tests.
  • Run pnpm lint to run linting.