在通过vue-cli3创建的vue项目中,monaco-editor的ctrl + v功能无效

时间:2018-11-10 07:17:50

标签: javascript monaco-editor vue-cli-3

我通过cli3(3.1.1版本)创建了一个vue项目。我安装了monaco-editor(0.14.3)。但是在我的页面中,ctrl + v功能无效。 这是我的代码:

<template>
  <div id="container" style="width:800px;height:600px;border:1px solid #ccc"></div>
</template>

<script>
import * as monaco from 'monaco-editor'
export default {
  data () {
    return {}
  },
  mounted () {
    this.editor = monaco.editor.create(document.getElementById('container'), {
      value: [
        'function x() {',
        '\tconsole.log("Hello world!");',
        '}'
      ].join('\n'),
      language: 'sql'
    })
  }
}
</script>

那是什么问题?以及如何解决?

0 个答案:

没有答案