UNPKG

@easyui/vue-code-editor

Version:

This is a web code editor for CodeMirror

39 lines (24 loc) 603 B
# vue-code-editor #### 介绍 基于 CodeMirror 封装的在线代码编辑器 #### 帮助文档 https://blancker.github.io/vue-code-editor-docs/ #### 环境说明 1. vue 版本:`>3.4.0` #### 安装 ``` shell # NPM npm i @easyui/vue-code-editor --save # PNPM pnpm add @easyui/vue-code-editor ``` #### 使用 ``` js import { createApp } from "vue"; import VueCodeEditor from "@easyui/vue-code-editor"; import "@easyui/vue-code-editor/index.css"; import App from "./App.vue"; const app = createApp(App); app.use(VueCodeEditor); app.mount("#app"); ```