我想在使用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));
答案 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));
还可以在以下链接上尝试一些选项。