@wb-editor/vue
v1.2.6
Published
`wb-editor` is a text editor imitates Weibo blog post publisher. This version is built for Vue2.
Downloads
5
Readme
wb-editor
is a text editor imitates Weibo blog post publisher. This version is built for Vue2.
Install
npm install --save @wb-editor/vue
Quickstart
<template>
<div class="editor-wrapper">
<Editor v-model="text" :suggest-data-fetcher="suggestDataFetcher"></Editor>
</div>
</template>
<script>
import Editor from "@wb-editor/vue"
export default {
components: {
Editor
},
data() {
return {
text: '',
suggestDataFetcher: () => {
return []
}
}
}
}
</script>