这次给大家带来vue项目中如何使用ueditor,vue项目中使用ueditor的注意事项有哪些,下面就是实战案例,一起来看一下。
以vue-cli生成的项目为例
1.static文件夹下先放入ueditor文件
2.index.html添加如下代码
3.webpack.base.conf.js添加如下配置externals: {
'UE': 'UE',
},
4.index.html中添加
window.UEDITOR_HOME_URL = "/static/ueditor/";//配置路径设定为UEditor所放的位置
5.editor组件
获取
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();
},
};
相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!
推荐阅读:
Canvas如何做出3D动态的Chart图表
WebGL怎样操作json与echarts图表