基于vue的markdown编辑器插件

// 安装
npm install mavon-editor --save
<template>
    <div>
       <mavon-editor v-model="value"/>
    </div>
</template>
<script>

    import {mavonEditor} from 'mavon-editor'
    import 'mavon-editor/dist/css/index.css'
    export default {
         components:{
            mavonEditor
        }
    }
</script>

Vue中使用mavonEditor

相关文章:

  • 2021-07-29
  • 2021-08-11
  • 2021-12-24
  • 2022-01-09
  • 2021-05-06
  • 2021-07-27
  • 2021-07-20
猜你喜欢
  • 2021-06-03
  • 2021-08-07
  • 2021-05-23
  • 2021-11-19
  • 2021-11-19
  • 2021-11-23
  • 2021-12-22
相关资源
相似解决方案