vue项目中使用wangEditor富文本

1,vue中安装wangEditor
使用的npm安装 npm install wangeditor --save
2,创建公用组件
在components中创建wangEnduit文件夹
组件内容为






3 在父组件中调用



import EditorBar from './editoritem'
components: { EditorBar },
data() {
      return {
        isClear: false,
        detail:""
        }
      },  
methods: {
  change(val) {
      console.log(val)
      
    },
 }

wangEditor官方文档
转载至 --> 冷影再见博客 https://kongjz.com/wly/detail/91

你可能感兴趣的:(vue项目中使用wangEditor富文本)