options.js 723 B

12345678910111213141516171819202122232425
  1. export default {
  2. theme: 'snow',
  3. boundary: document.body,
  4. modules: {
  5. toolbar: [
  6. ['bold', 'italic', 'underline', 'strike'],
  7. ['blockquote', 'code-block'],
  8. [{ 'header': 1 }, { 'header': 2 }],
  9. [{ 'list': 'ordered' }, { 'list': 'bullet' }],
  10. [{ 'script': 'sub' }, { 'script': 'super' }],
  11. [{ 'indent': '-1' }, { 'indent': '+1' }],
  12. [{ 'direction': 'rtl' }],
  13. [{ 'size': ['small', false, 'large', 'huge'] }],
  14. [{ 'header': [1, 2, 3, 4, 5, 6, false] }],
  15. [{ 'color': [] }, { 'background': [] }],
  16. [{ 'font': [] }],
  17. [{ 'align': [] }],
  18. ['clean'],
  19. ['link', 'image', 'video']
  20. ]
  21. },
  22. placeholder: 'Insert text here ...',
  23. readOnly: false
  24. }