当前位置:   article > 正文

ElementUI生成富文本编辑器_elementui富文本编辑器

elementui富文本编辑器

1.安装插件

npm install vue-quill-editor --save

                                               安装成功后在package.json中查看

 

2.全局引入插件(main.js)

import VueQuillEditor from 'vue-quill-editor'

import 'quill/dist/quill.core.css'

import 'quill/dist/quill.snow.css'

import 'quill/dist/quill.bubble.css'

Vue.use(VueQuillEditor)

 

3.页面实现

  1. <template>
  2. <div class="body">
  3. <h2>富文本编辑器</h2>
  4. <quill-editor ref="text" v-model="content" class="editor" :options="editorOption"/>
  5. <el-button class="button" @click="onEditor">提交</el-button>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. content: "",
  13. editorOption: {},
  14. };
  15. },
  16. methods: {
  17. onEditor() {
  18. console.log("富文本内容=",this.$refs.text.value);
  19. },
  20. },
  21. };
  22. </script>
  23. <style lang="less" scoped>
  24. .body {
  25. height: 700px;
  26. .editor {
  27. height: 500px;
  28. }
  29. .button {
  30. margin-left: 50%;
  31. margin-top: 50px;
  32. }
  33. }
  34. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/544366
推荐阅读