当前位置: 移动技术网 > IT编程>脚本编程>vue.js > vue项目中使用ueditor的实例讲解

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

2018年03月08日  | 移动技术网IT编程  | 我要评论

以vue-cli生成的项目为例

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

2.添加如下代码

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

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

externals: {
  'ue': 'ue',
 },

4.中添加

<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 id="editor" type="text/plain" style="width:1024px;height:500px;"></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的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网