Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 的跨平台富文本编辑器,类似知乎移动端富文本
- Host: GitHub
- URL: https://github.com/artiely/quill-vue-mobile
- Owner: artiely
- Created: 2020-02-24T08:25:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:10:44.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T01:42:04.927Z (almost 2 years ago)
- Topics: quill, quill-editor, quill-mobile, quill-vue, quill-vue-mobile, rich-text-editor
- Language: JavaScript
- Homepage:
- Size: 2.07 MB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
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)
},
},
}```