如何在Monaco编辑器中设置fontSize?

时间:2019-07-16 00:55:27

标签: css font-size monaco-editor

我想在使用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));

1 个答案:

答案 0 :(得分:1)

您尚未在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