Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kagol/quill-counter

Quill字符统计模块
https://github.com/kagol/quill-counter

Last synced: 11 days ago
JSON representation

Quill字符统计模块

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
}
});
```