123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- export const debug = process.env.NODE_ENV !== 'production';
- export const editorDefaultSet = {
- menus: [
- "head",
- "bold",
- "fontSize",
- "fontName",
- "underline",
- "strikeThrough",
- "indent",
- "lineHeight",
- "foreColor",
- "backColor",
- "list",
- "quote",
- "emoticon",
- "justify",
- "undo",
- "redo"
- ],
- fontNames: [
- '黑体',
- '仿宋',
- '楷体',
- '标楷体',
- '华文仿宋',
- '华文楷体',
- '宋体',
- '微软雅黑',
- 'Arial',
- 'Tahoma',
- 'Verdana',
- ],
- height: 400
-
-
-
-
-
-
-
-
-
-
- };
|