久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

vue加載百度Ueditor編輯器

 看見就非常 2020-05-08

下載代碼:http://ueditor.baidu.com/website/download.html

在HTML文件的head引入以下文件:

  1. <!-- 編輯器依賴 begin -->
  2. <script src="./ueditor/ueditor.config.js"></script>
  3. <script src="./ueditor/ueditor.all.min.js"></script>
  4. <script src="./ueditor/lang/zh-cn/zh-cn.js"></script>
  5. <link rel="stylesheet" href="./ueditor/themes/default/css/ueditor.css'">
  6. <!-- 編輯器依賴 end -->

注意:引入路徑根據(jù)文件的實(shí)際存放路徑來寫就好

接下來在組件里就可以用了,,組件完整代碼:

  1. <template>
  2. <div>
  3. <div id="container" style="width:50vw; height:300px;"></div>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'index',
  9. data() {
  10. return {
  11. editor: null,
  12. value: ''
  13. }
  14. },
  15. mounted() {
  16. this.editor = window.UE.getEditor('container')
  17. this.editor.addListener('ready', () => {
  18. this.editor.setContent(this.value)
  19. })
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>

這樣就可以了,,菜單可以根據(jù)需要,自己在ueditor.config.js文件中配置,。

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多