vue中使用ckeditor

Posted JaydenLD@Clara

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中使用ckeditor相关的知识,希望对你有一定的参考价值。

1.第一步首先去ckeditor官网去下载editor文件,这里以ckeditor4为例

  首先在index.html里引入js代码

 <script type="text/javascript" src="/static/ckeditor/ckeditor.js"></script>

2然后在webpack.base.conf.js里编写

.

3.在需要使用的模块里引入

<template>
  <div id="video">
video
<textarea id="editor" rows="10" cols="80"></textarea>

  </div>
</template>
<script>
import CKEDITOR from "CKEDITOR"
  export default{
    name:\'video\',
    mounted() {
      CKEDITOR.replace("editor", {height: "300px", width: "100%", toolbar: "Full"});
      var editor = CKEDITOR.instances.editor2;
    },
  }
</script>

<style>

</style>

然后保存运行你的vue项目,即可查看到

 

以上是关于vue中使用ckeditor的主要内容,如果未能解决你的问题,请参考以下文章

ckeditor-vue2.0 接入富文本框

vue集成CKEditor构建框架的使用,遇到富文本框不出现工具栏等操作

在Vue组件中显示CKeditor内容?

Ckeditor 不能在 laravel 5.5 的 vue js 中工作

如何将CKeditor编辑器的上传和thinkphp结合

CKEditor5 + vue2.0 富文本编辑器 图片上传highlight等用法