1.1.0 • Published 4 years ago

@halobear/vue-editor v1.1.0

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

@halobear/vue-editor

示例

安装

yarn add @halobear/vue-editor

使用

<template>
  <div class="test-container">
    <h2 class="title">富文本编辑器</h2>
    <vue-editor
      class="editor-content"
      type="word"
      v-model="text"
      :inset-image="insetImage"
    ></vue-editor>
    <h2 class="title">markdown编辑器</h2>
    <vue-editor
      class="editor-content"
      type="markdown"
      v-model="text"
    ></vue-editor>
  </div>
</template>

<script>
  import VueEditor from '../index.vue'

  export default {
    components: {
      VueEditor
    }
  }
</script>

使用了以下开源代码

1.1.0

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago