UNPKG

yanzi-monaco-editor

Version:

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

15 lines (11 loc) 400 B
import Vue from 'vue' import App from './App.vue' Vue.config.productionTip = false // ************************【Element-UI Start】************************ import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; Vue.use(ElementUI); // *************************【Element-UI End】*********************** new Vue({ render: h => h(App), }).$mount('#app')