Skip to content

create

原文链接

https://microsoft.github.io/monaco-editor/docs.html#functions/editor.create.html

提示

这是创建编辑器的函数,在日常开发中,常用的是其返回值的属性进行项目开发,大家可以重点关注该方法!

js
const myEditor = editor.create(document.querySelector(".editor"), {
  value: `function add(a, b) { return a + b; }`,
  language: "javascript",
});
  • 输出: