1. 程式人生 > >vue中使用UEditor富文字首次載入正常,第二次無法正常載入

vue中使用UEditor富文字首次載入正常,第二次無法正常載入

網上看到一些方法

1.可以在每次載入前刪除

mounted(){
    UE.delEditor('editor');
    this.ue = window.UE.getEditor('editor');
}

2.可以每次載入渲染 

mounted(){
    this.ue = window.UE.getEditor('editor');
    this.ue.render('editor');
}

上面兩個方法,第二種第一次載入時出現了兩個文字編輯器,而且控制檯報錯,雖然不影響功能,但感覺怪怪的,而是用第一種則沒有該問題,推薦第一種