Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/artiely/quill-vue-mobile

一个 quill 的封装,用于移动端 webview 的跨平台富文本编辑器,类似知乎移动端富文本
https://github.com/artiely/quill-vue-mobile

quill quill-editor quill-mobile quill-vue quill-vue-mobile rich-text-editor

Last synced: about 2 months ago
JSON representation

一个 quill 的封装,用于移动端 webview 的跨平台富文本编辑器,类似知乎移动端富文本

Awesome Lists containing this project

README

        

# quill-vue-mobile

一个 quill 的封装,用于移动端 webview 的跨平台富文本编辑器,类似知乎移动端富文本

## preview

![](a.jpg)

![](b.jpg)

## Project setup

```
npm install quill-vue-mobile
```

## usage

```vue

export default {
data() {
return {
title: '',
}
},
methods: {
uploadImg() {
this.$refs.editor.renderImg(
'https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo_top-e3b63a0b1b.png'
)
},
contentChange(w) {
console.log('TCL: contentChange -> w', w)
},
titleChange(w) {
console.log('TCL: titleChange -> w', w)
},
},
}

```