时间:2021-05-26
需求:
1. 可输入代码,并且代码语法高亮
2. 支持编辑和不可编辑模式
3. 提交到后端到代码内容为字符串格式
实现
在gitbug上找到vue-prism-editor,可以满足以上需求。
使用
1.安装vue-prism-editor
npm install vue-prism-editor由于vue-prism-editor需要依赖 prismjs,所以还需要安装prismjs
npm install prismjs2.在需要使用vue-prism-editor的组件中引入
import { PrismEditor } from "vue-prism-editor";import "vue-prism-editor/dist/prismeditor.min.css"; // import the styles somewhere// import highlighting library (you can use any library you want just return html string)import { highlight, languages } from "prismjs/components/prism-core";import "prismjs/components/prism-clike";import "prismjs/components/prism-javascript";import "prismjs/themes/prism-tomorrow.css"; // import syntax highlighting styles3.html代码
<prism-editor class="my-editor height-300" v-model="code" :highlight="highlighter" :line-numbers="lineNumbers"></prism-editor>code----为需要高亮显示的代码内容
highlighter----定义在methods中的一个方法,用于把code高亮显示
lineNumbers----是否可编辑标识
4.js代码
export default { components: { PrismEditor }, data: () => ({ code: 'console.log("Hello World")', lineNumbers: true, // true为编辑模式, false只展示不可编辑 }), methods: { highlighter(code) { return highlight(code, languages.js); //returns html } }};5.css代码
<style lang="scss">.my-editor { background: #2d2d2d; color: #ccc; font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace; font-size: 14px; line-height: 1.5; padding: 5px;}.prism-editor__textarea:focus { outline: none;}.height-300 { height: 300px;}</style>注意: css样式必写,不然编辑器没有样式,只是纯白页面展示
“height-300” 是给编辑器设置高度的,高度可自行设置,也可以不设置,这个样式非必需
到这里,功能基本就实现了。
但是在过程中遇到一些问题,这里也一并总结。
问题
1.如果仅安装vue-prism-editor,没有安装prismjs,会报以下错误,npm install prismjs即可
2.如果报错中有提示升级或者安装ajv或者vue2.6.X版本,根据提示安装即可
npm install ajv@^6.9.1npm install vue@^2.6.11个人理解,如果ajv和vue版本过低,可能会导致vue-prism-editor依赖的相关东西安装不上,建议升级完ajv和vue之后,再重新安装vue-prism-editor和prismjs.
3.vue与vue-template-compiler版本不一致
卸载低版本vue-template-compiler
npm uninstall vue-template-compiler然后安装跟vue同样版本的vue-template-compiler
npm install vue-template-compiler@2.6.11到此这篇关于vue项目页面嵌入代码块vue-prism-editor的文章就介绍到这了,更多相关vue项目页面嵌入代码块内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
结合vue+element-ui+vue-quill+editor二次封装成组件1.图片上传分析原因项目中使用vue-quill-editor富文本编辑器,在编
如果我们需要在vscode中嵌入自己开发的vue页面就需要以下的操作1.把开发好的vue项目打包,如果打包出来的vue执行是空白页,就需要看看之前我写的文章,v
本文介绍了新手vue构建单页面应用实例代码,分享给大家,具体如下步骤:1.使用vue-cli创建项目2.使用vue-router实现单页路由3.用vuex管理我
项目下载地址vue-cli多页面多路由项目示例:vue+webpack+vue-router+vuex+mock+axiosUsageThisisaprojec
vue-cli是由vue官方发布的快速构建vue单页面的脚手架。使用vue-cli构建的项目,在默认情况下,执行npmrunbuild会将所有的js代码打包为一