collect-system/apps/web/src/components/common/editor/quill/constants.ts

11 lines
333 B
TypeScript
Raw Normal View History

2025-01-21 19:48:54 +08:00
export const defaultModules = {
toolbar: [
[{ 'header': [1, 2, 3, 4, 5, 6, false] }],
['bold', 'italic', 'underline', 'strike'],
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
[{ 'color': [] }, { 'background': [] }],
[{ 'align': [] }],
['link', 'image'],
['clean']
]
};