Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kagol/quill-counter
Quill字符统计模块
https://github.com/kagol/quill-counter
Last synced: 11 days ago
JSON representation
Quill字符统计模块
- Host: GitHub
- URL: https://github.com/kagol/quill-counter
- Owner: kagol
- Created: 2020-03-07T09:53:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T12:37:18.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T10:13:18.247Z (about 2 months ago)
- Language: JavaScript
- Size: 2.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quill-counter
Quill字符统计模块
# 安装
```
npm i quill-counter
```## 注册
```
import Quill from 'quill';
import Counter from 'quill-counter';Quill.register('modules/counter', Counter);
```## 开启
```
const quill = new Quill('#editor', {
theme: 'snow',
modules: {
counter: true
}
});
```