balm-ui
Version:
A modular and customizable UI library based on Material Design and Vue 3
15 lines (10 loc) • 344 B
JavaScript
import { useEditor } from '../core/quill';
function useFontSize(customFontSize = []) {
if (customFontSize.length) {
const { Quill } = useEditor();
const FontSizeStyle = Quill.import('attributors/style/size');
FontSizeStyle.whitelist = customFontSize;
Quill.register(FontSizeStyle, true);
}
}
export default useFontSize;