You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
425 B
23 lines
425 B
/*
|
|
* @Description:
|
|
* @Author: tangjiang
|
|
* @Github:
|
|
* @Date: 2019-12-09 09:28:34
|
|
* @LastEditors: tangjiang
|
|
* @LastEditTime: 2019-12-16 11:39:48
|
|
*/
|
|
import { useEffect } from 'react'
|
|
|
|
function useQuillPlaceholder (
|
|
quill,
|
|
placeholder
|
|
) {
|
|
|
|
useEffect(() => {
|
|
if (!quill || !quill.root) return;
|
|
quill.root.dataset.placeholder = placeholder;
|
|
}, [quill, placeholder]);
|
|
}
|
|
|
|
export default useQuillPlaceholder;
|