123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- const editorOption = {
- theme: 'snow',
- boundary: document.body,
- modules: {
- toolbar: [
- ['bold', 'italic', 'underline', 'strike'],
- ['blockquote', 'code-block'],
- [{
- 'header': 1
- }, {
- 'header': 2
- }],
- [{
- 'list': 'ordered'
- }, {
- 'list': 'bullet'
- }],
- [{
- 'script': 'sub'
- }, {
- 'script': 'super'
- }],
- [{
- 'indent': '-1'
- }, {
- 'indent': '+1'
- }],
- [{
- 'direction': 'rtl'
- }],
- [{
- 'size': ['small', false, 'large', 'huge']
- }],
- [{
- 'header': [1, 2, 3, 4, 5, 6, false]
- }],
- [{
- 'color': []
- }, {
- 'background': []
- }],
- [{
- 'font': []
- }],
- [{
- 'align': []
- }],
- ['clean'],
- ['link', 'image', 'video']
- ]
- },
- placeholder: 'Insert text here ...',
- readOnly: false,
- }
- export default editorOption
|