我想在使用Monaco Editor时设置fontSize,但是这样不起作用。

monaco.editor.create(this.$el as HTMLElement, Object.assign({
      language: 'sql',
      theme: 'vs-dark',
      fontSize: 20,
      folding: true,
      autoIndent: true,
      renderLineHighlight: 'line',
      scrollBeyondLastLine: false,
      wordWrap: 'on'
    }, this.options));

最佳答案

您尚未在fontsize之后添加px

检查下面的更新代码。

monaco.editor.create(this.$el as HTMLElement, Object.assign({
  language: 'sql',
  theme: 'vs-dark',
  fontSize: '20px',
  folding: true,
  autoIndent: true,
  renderLineHighlight: 'line',
  scrollBeyondLastLine: false,
  wordWrap: 'on'
}, this.options));


您也可以在以下链接上尝试一些选项。

Monaco Editor

关于css - 如何在Monaco编辑器中设置fontSize?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57048784/

10-11 09:01