vue中正確使用富文字編輯器wangeditor和使用wangeditor遇到的坑
地址:http://www.wangeditor.com/,
1)首先終端中安裝 npm i wangeditor
<div ref="editor" style="text-align: left" class="text"></div>
2) 引入富文字編輯器 import E from "wangeditor"
3)以前的時候這樣用時不會報錯,現在確不行了,懷疑時wangeditor更新改版了,下的包有些內容不一樣,造成下面這個錯
4)改變層級的話,我在遊覽器中除錯 ,可以用css改變
// /deep/.w-e-toolbar {
// z-index: 100 !important;
// }
// /deep/.w-e-text-container {
// z-index: 100 !important;
// }
5)當然不用CSS改變的話,要在層級和內容
var editor = new E(this.$refs.editor); //此處不能用
console.log(editor);
發現這個editor 中
editor.config.onchange和editor.zIndex.baseZIndex才取到內容和層級 在按照1)2)操作
npm i wangeditor
引入富文字編輯器 import E from "wangeditor"
mounted() {
var editor = new E(this.$refs.editor); //此處不能用
console.log(editor);
// editor.customConfig.onchange = (html) => {
// this.articalObj.content = html;
// };
// editor.customConfig.zIndex = 100; //這個不能用了
editor.config.onchange = (html) => {
this.articalObj.content = html;
};
editor.zIndex.baseZIndex = 100;
editor.create();
},
總結:如果取不到的情況下,可以console.log下,看看控制檯有沒有自己要的
相關文章
- HTML 頁面使用 wangeditor 富文字編輯器HTML
- 富文字編輯器:UEditor與wangEditor 初使用總結
- 重構wangEditor(web富文字編輯器),歡迎指正!Web
- vue如何使用富文字編輯器wangEditor自定義圖片上傳(解決跨域問題)Vue跨域
- Vue3學習(二十)- 富文字外掛wangeditor的使用Vue
- 輕量級富文字編輯器wangEditor原始碼結構介紹原始碼
- 更加簡潔易用——wangEditor富文字編輯器新版本釋出
- 九、Vue+Element使用富文字編輯器Vue
- laravel-admin 富文字編輯器擴充套件 wangEditor V4版Laravel套件
- 我為什麼要做富文字編輯器【wangEditor5個月總結】
- wangEditor——輕量化web富文字框Web
- [Djangorestframework]-富文字編輯器的使用DjangoRESTFramework
- wangEditor——輕量級web富文字框Web
- ckeditor4.8 富文字編輯器的使用與填坑-PHPPHP
- 富文字編輯器 VUE-QUILL-EDITOR 使用教程 (最全)VueUI
- SSM使用UEditor富文字編輯器SSM
- vue專案獲取富文字編輯器wangEditor內容匯出為word(html轉word格式並下載)VueHTML
- Laravel-admin 配置 wangEditor3 富文字編輯器圖片七牛雲上傳Laravel
- 關於專案中使用的富文字編輯器markdown和傳統的富文字編輯器的對比和選擇
- vue 富文字編輯器 vue-quill-editorVueUI
- 輕量級web富文字框——wangEditor使用手冊(1)——基本應用Web
- WangEditor遇到的問題
- iOS使用UITableView實現的富文字編輯器iOSUIView
- 輕量級web富文字框——wangEditor使用手冊(1)——基本應用 demoWeb
- 輕量級web富文字框——wangEditor使用手冊(4)——配置下拉選單Web
- Laravel中使用wangEditorLaravel
- 一個百度富文字編輯器的坑
- 在VueJS中使用 froala 富文字編輯器VueJS
- 「newbee-mall新蜂商城開源啦」 頁面優化,最新版 wangEditor 富文字編輯器整合案例優化
- 輕量級web富文字框——wangEditor使用手冊(4)——配置下拉選單 demoWeb
- 輕量級web富文字框——wangEditor使用手冊(5)——配置“插入程式碼”功能Web
- 富文字編輯器初探
- Javascript富文字編輯器JavaScript
- 輕量級web富文字框——wangEditor使用手冊(5)——配置“插入程式碼”功能 demoWeb
- 輕量級web富文字框——wangEditor使用手冊(3)——如何自定義配置選單Web
- 輕量級web富文字框——wangEditor使用手冊(6)——配置“上傳圖片”功能Web
- 線上富文字編輯器初探
- 輕量級web富文字框——wangEditor使用手冊(3)——如何自定義配置選單 demoWeb