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 初使用總結
- vue如何使用富文字編輯器wangEditor自定義圖片上傳(解決跨域問題)Vue跨域
- Vue3學習(二十)- 富文字外掛wangeditor的使用Vue
- laravel-admin 富文字編輯器擴充套件 wangEditor V4版Laravel套件
- Laravel-admin 配置 wangEditor3 富文字編輯器圖片七牛雲上傳Laravel
- 九、Vue+Element使用富文字編輯器Vue
- [Djangorestframework]-富文字編輯器的使用DjangoRESTFramework
- vue專案獲取富文字編輯器wangEditor內容匯出為word(html轉word格式並下載)VueHTML
- WangEditor遇到的問題
- ckeditor4.8 富文字編輯器的使用與填坑-PHPPHP
- SSM使用UEditor富文字編輯器SSM
- 富文字編輯器 VUE-QUILL-EDITOR 使用教程 (最全)VueUI
- 關於專案中使用的富文字編輯器markdown和傳統的富文字編輯器的對比和選擇
- 「newbee-mall新蜂商城開源啦」 頁面優化,最新版 wangEditor 富文字編輯器整合案例優化
- iOS使用UITableView實現的富文字編輯器iOSUIView
- vue 富文字編輯器 vue-quill-editorVueUI
- 在VueJS中使用 froala 富文字編輯器VueJS
- 一個百度富文字編輯器的坑
- wangEditor編輯器過濾word文件自帶標籤樣式
- SpringMVC整合富文字編輯器SpringMVC
- laravel中使用WangEditor及多圖上傳Laravel
- Element UI 整合富文字編輯器 vue-quill-editorUIVue
- springboot+layui 整合百度富文字編輯器ueditor入門使用教程(踩過的坑)Spring BootUI
- vue專案中富文字編輯器踩坑之旅Vue
- 富文字編譯器UEditor+SSM的使用編譯SSM
- 分享 - 富文字編輯器 Froala Editor
- 線上富文字編輯器初探
- 半成品md富文字編輯器
- Vue-Cli 3+tinymce 5 富文字編輯器整合Vue
- Django搭建個人部落格:使用django-ckeditor富文字編輯器Django
- 各種富文字/ HTML編輯器和框架比較HTML框架
- 一個富文字編輯器quill 以Vue專案為例UIVue
- Vue 自定義富文字編輯器 tinymce 支援匯入 word 模板Vue
- 深入淺出contenteditable富文字編輯器
- Eleditor移動端富文字編輯器
- 富文字及編輯器的跨平臺方案
- 如何安裝和使用純文字編輯器 vi/vim