vue项目中使用ueditor的实例讲解

下面小编就为大家分享一篇vue项目中使用ueditor的实例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

以vue-cli生成的项目为例

1.static文件夹下先放入ueditor文件

2.index.html添加如下代码

<script type="text/javascript" charset="utf-8" src="https://www.jb51.net/static/ueditor/ueditor.config.js"></script> <script type="text/javascript" charset="utf-8" src="https://www.jb51.net/static/ueditor/ueditor.all.min.js"></script>

3.webpack.base.conf.js添加如下配置

externals: { 'UE': 'UE', },

4.index.html中添加

<script type="text/javascript"> window.UEDITOR_HOME_URL = "/static/ueditor/";//配置路径设定为UEditor所放的位置 </script>

5.editor组件

<template> <div> <mt-button @click="geteditor()" type="danger">获取</mt-button> <script type="text/plain"></script> </div> </template> <script> const UE = require('UE');// eslint-disable-line export default { name: 'editorView', data: () => ( { editor: null, } ), methods: { geteditor() { console.log(this.editor.getContent()); }, }, mounted() { this.editor = UE.getEditor('editor'); }, destroyed() { this.editor.destroy(); }, }; </script> <style> </style>

以上这篇vue项目中使用ueditor的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/psgdz.html