UNPKG

yanzi-monaco-editor

Version:

这是一个基于微软的monaco和vue封装的一个代码编辑器,浏览器可运行。主要功能有:html、javascript、css代码编辑,高亮显示,语法错误提示等,可以帮您的项目很快的拥有一个web端的代码编辑器

20 lines (15 loc) 350 B
<meta charset="utf-8"> <title>yanziMonacoEditor demo</title> <script src="https://unpkg.com/vue"></script> <script src="./yanziMonacoEditor.umd.js"></script> <link rel="stylesheet" href="./yanziMonacoEditor.css"> <div id="app"> <demo></demo> </div> <script> new Vue({ components: { demo: yanziMonacoEditor } }).$mount('#app') </script>