Vue-CodeMirror 使用

vue2

安装

 npm install vue-codemirror -S # or yarn add vue-codemirror -S

全局配置,main.js文件引入

import VueCodemirror from 'vue-codemirror'
// import base style
import 'codemirror/lib/codemirror.css'
Vue.use(VueCodemirror)Vue 文件内使用
<template><div class="exercise"><codemirror v-model="codeSnippets":options="cmOptions"/></div>
</template>
<script>
// 编辑器代码格式
import 'codemirror/mode/properties/properties.js'
// 自动刷新(防止codemirror需要手动刷新才出数据)
import 'codemirror/addon/display/autorefresh'
// 主题
import 'codemirror/theme/ayu-mirage.css'export default {data(){return{codeSnippets: 'aa',cmOptions: {autorefresh: true,tabSize: 4,mode: 'text/x-properties',theme: 'ayu-mirage',line: true,viewportMargin: Infinity, //处理高度自适应时搭配使用highlightDifferences: true,autofocus: false,indentUnit: 2,smartIndent: true,readOnly: true, // 只读showCursorWhenSelecting: true,firstLineNumber: 1}}}
}</script><style lang="scss">
.CodeMirror{font-family: monospace;height: 100vh;color: black;direction: ltr;
}
</style>

mode 和 theme 可以在官网上查找切换 mode查看官方支持,在项目node_modules/codemirror/mode目录下找相应js文件引入即可; theme同理。

theme 地址:https://codemirror.net/demo/theme.html

mode地址:https://codemirror.net/mode/ codemirror

在 v-for 使用多个时,会出现数据需要鼠标点击一下才会刷新的情况,此时需要引入自动刷新机制,在使用界面引入 autorefresh 并在 options 中配置

// 自动刷新
import 'codemirror/addon/display/autorefresh'export default {data(){return{cmOptions: {// 开启自动刷新autorefresh: true...

vue3

安装

npm install codemirror-editor-vue3 -S

# or

yarn add codemirror-editor-vue3 -S

全局配置,main.js文件引入
import { createApp } from 'vue';
import App from './App.vue';
import Codemirror from "codemirror-editor-vue3";const app = createApp(App);
app.use(Codemirror).mount('#app');Vue 文件内使用
<template><div class="exercise"><codemirror v-model:value="codeSnippets" :options="cmOptions" /></div>
</template><script>
// 编辑器代码格式
import "codemirror/mode/javascript/javascript.js";
// 自动刷新(防止codemirror需要手动刷新才出数据)
import "codemirror/addon/display/autorefresh";
// 主题
import "codemirror/theme/ayu-mirage.css";
import { reactive, ref } from "vue";export default {setup() {const codeSnippets = ref(`var i = 0;
for (; i < 9; i++) {console.log(i);// more statements
}`);const cmOptions = reactive({autorefresh: true,tabSize: 4,mode: "text/javascript",theme: "ayu-mirage",line: true,viewportMargin: Infinity, //处理高度自适应时搭配使用highlightDifferences: true,autofocus: false,indentUnit: 2,smartIndent: true,// readOnly: true, // 只读showCursorWhenSelecting: true,firstLineNumber: 1,});return { codeSnippets, cmOptions };},
};
</script><style lang="scss">
.CodeMirror {height: 100vh;direction: ltr;
}
</style>

效果如下

merge 模式<template><div class="exercise"><codemirror:merge="true"@change="onChange"class="cm-component":options="cmOptions"/></div>
</template><script>
// 编辑器代码格式
import "codemirror/mode/htmlmixed/htmlmixed.js";
// 自动刷新(防止codemirror需要手动刷新才出数据)
import "codemirror/addon/display/autorefresh";import { reactive, ref } from "vue";export default {setup() {const code = ref(`<head><title>codemirror-editor-vue</title><meta data-n-head="ssr" charset="utf-8">
</head>`);const orig2 = ref(`<head><title>test title</title><meta data-n-head="ssr" charset="utf-8">
</head>`);const onChange = (val, instance) => {console.log(val);console.log(instance);};const cmOptions = reactive({autorefresh: true,mode: "text/javascript",theme: "default",value: code.value,origLeft: null,orig: orig2,connect: "align",mode: "text/html",lineNumbers: true,collapseIdentical: false,highlightDifferences: true,});return { onChange, orig2, code, cmOptions };},
};
</script><style lang="scss">
.CodeMirror-merge {font-family: monospace;height: 300px;color: black;direction: ltr;
}
</style>

效果如下

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/22973.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【运维】第03讲(上):Nginx 负载均衡常见架构及问题解析

实际上 Nginx 除了承担代理网关角色外还会应用于 7 层应用上的负载均衡&#xff0c;本课时重点讲解 Nginx 的负载均衡应用架构&#xff0c;及最常见的问题。 学前提示 Nginx 作为负载均衡是基于代理模式的基础之上&#xff0c;所以在学习本课时前&#xff0c;你需要对 Nginx …

LangChain大型语言模型(LLM)应用开发(四):QA over Documents

LangChain是一个基于大语言模型&#xff08;如ChatGPT&#xff09;用于构建端到端语言模型应用的 Python 框架。它提供了一套工具、组件和接口&#xff0c;可简化创建由大型语言模型 (LLM) 和聊天模型提供支持的应用程序的过程。LangChain 可以轻松管理与语言模型的交互&#x…

一个HTTP的流程

1&#xff0c;键入一个URL后浏览器将URL进行解析 2,浏览器解析URL后&#xff0c;需要查询服务器域名对应的IP地址。 流程如下&#xff1a;查询缓存&#xff0d; >客户端发送DNS请求-> 根DNS&#xff0c;根DNS根据 .COM-> 顶级域名服务器&#xff0c;根据baidu->权…

C# Linq 详解四

目录 概述 二十、SelectMany 二十一、Aggregate 二十二、DistinctBy 二十三、Reverse 二十四、SequenceEqual 二十五、Zip 二十六、SkipWhile 二十七、TakeWhile C# Linq 详解一 1.Where 2.Select 3.GroupBy 4.First / FirstOrDefault 5.Last / LastOrDefault C# Li…

xxl-job的简单使用

xxl-job是一个分布式任务调度框架&#xff0c;在Spring中&#xff0c;提供有任务调度的注解功能&#xff0c;在之前的项目中&#xff0c;非分布式任务都可以直接使用Spring框架提供的Scheduled注解和EnableScheduling注解来实现定时任务。 EnableScheduling注解加载项目启动类上…

MySQL数据库基础 18

第18章_MySQL8其它新特性 1. MySQL8新特性概述1.1 MySQL8.0 新增特性1.2 MySQL8.0移除的旧特性 2. 新特性1&#xff1a;窗口函数2.1 使用窗口函数前后对比2.2 窗口函数分类2.3 语法结构2.4 分类讲解1. 序号函数2. 分布函数3. 前后函数4. 首尾函数5. 其他函数 2.5 小 结 3. 新特…

录音怎么转换成mp3格式?

录音怎么转换成mp3格式&#xff1f;将录音转换成MP3格式可以节省存储空间。通常&#xff0c;录音保存的文件格式是WAV等无损音频格式&#xff0c;这种音频格式相对于MP3格式占用的存储空间更大。将录音转换成MP3格式后&#xff0c;可以减小文件的大小&#xff0c;方便储存和传输…

cpuset.cpus.effective: no such file or directory (修改 docker cgroup 版本的方法)

要切换使用 v1 版 cgroup&#xff0c;需要做如下配置&#xff1a; vim /etc/default/grubGRUB_CMDLINE_LINUX"systemd.unified_cgroup_hierarchy0"update-grubreboot完美解决

119、仿真-51单片机温湿度光照强度LCD 1602显示报警设计(Proteus仿真+程序+元器件清单等)

方案选择 单片机的选择 方案一&#xff1a;AT89C52是美国ATMEL公司生产的低电压&#xff0c;高性能CMOS型8位单片机&#xff0c;器件采用ATMEL公司的高密度、非易失性存储技术生产&#xff0c;兼容标准MCS-51指令系统&#xff0c;片内置通用8位中央处理器(CPU)和Flash存储单元…

HTML input text 常用事件

前言 用于记录开发中常用到的&#xff0c;快捷开发 简单实例 <input type"text" name"noSecretKeyJson" maxlength"200" />常用事件 oninput &#xff08;在用户输入时触发&#xff09;及案例 案例一&#xff1a;限制只允许输入数字…

windows nodejs 版本切换

一、按健winR弹出窗口&#xff0c;键盘输入cmd,然后敲回车。然后进入命令控制行窗口&#xff0c;并输入where node查看之前本地安装的node的路径。 二、找到上面找到的路径&#xff0c;将node.exe所在的父目录里面的所有东西都删除。 三、从官网下载安装包 https://github.com/…

【技能实训】DMS数据挖掘项目-Day10

文章目录 任务10【任务10.1.1】安装Mysql数据库&#xff0c;创建项目所需的数据库dms_学号、表及用户名、密码等&#xff0c;并搭建数据访问的基础环境(JDBC)【任务10.1.2】加载JDBC包【任务10.1.3】编写mysql.properties文件【任务10.1.4】编写Config类【任务10.2】编写访问数…