vue+ckEditor5
1 2 3 4 | 1.安装依赖< br > "@ckeditor/ckeditor5-build-balloon": "^10.1.0", "@ckeditor/ckeditor5-build-classic": "^10.1.0", "@ckeditor/ckeditor5-build-inline": "^10.1.0", "vue-ckeditor5": "^0.1.5", |
2.html
<div id="ckEditor"> <vue-ckeditor type="balloon" v-model="content" :editors="editors1" :config='config' ></vue-ckeditor> </div>
3.引入文件
import ClassicEditor from '@ckeditor/ckeditor5-build-classic'
import BalloonEditor from '@ckeditor/ckeditor5-build-balloon'
import InlineEditor from '@ckeditor/ckeditor5-build-inline'
import VueCkeditor from 'vue-ckeditor5'
4.js
data(){ return { content: '', editors1: { // classic: ClassicEditor, balloon: BalloonEditor }, config:{ language:'en', ckfinder: { uploadUrl: $.getCookie('prefixUrl') +'/file/uploads' }, image:{ toolbar: [ 'imageTextAlternative', '|', 'imageStyle:alignLeft', 'imageStyle:full', 'imageStyle:alignRight' ], styles: [ // This option is equal to a situation where no style is applied. 'full', // This represents an image aligned to the left. 'alignLeft', // This represents an image aligned to the right. 'alignRight' ] }, fontSize: { options: [ 'tiny', 'small', 'big', 'huge' ] }, fontFamily: { options: [ 'default', 'Ubuntu, Arial, sans-serif', 'Ubuntu Mono, Courier New, Courier, monospace' ] }, toolbar: [ 'heading', '|', 'alignment',// <--- ADDED 'bold', 'italic', 'link', 'fontFamily', 'fontSize', // 'bulletedList', // 'numberedList', 'imageUpload', // 'blockQuote', 'undo', 'redo' ] } } },
components:{
'vue-ckeditor': VueCkeditor.component
}
5.处理数据
ctbrife(str){ // str = str.replace(/\<c:if\b[^>]*>([\s\S]*?)</c:if>/g,'') str = str.replace(/<\/?[^>]*>/g,''); //去除HTML tag str = str.replace(/[ | ]*\n/g,'\n'); //去除行尾空白 //str = str.replace(/\n[\s| | ]*\r/g,'\n'); //去除多余空行 str=str.replace(/ /ig,'');//去掉 return str.substring(0,40); }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Java 中堆内存和栈内存上的数据分布和特点
· 开发中对象命名的一点思考
· .NET Core内存结构体系(Windows环境)底层原理浅谈
· C# 深度学习:对抗生成网络(GAN)训练头像生成模型
· .NET 适配 HarmonyOS 进展
· 手把手教你更优雅的享受 DeepSeek
· 腾讯元宝接入 DeepSeek R1 模型,支持深度思考 + 联网搜索,好用不卡机!
· AI工具推荐:领先的开源 AI 代码助手——Continue
· 探秘Transformer系列之(2)---总体架构
· V-Control:一个基于 .NET MAUI 的开箱即用的UI组件库