gaoluyang
9 天以前 0904d14fb18944b5cc209b44e48d25c8f5aed928
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export enum MODE {
  HTML = 'htmlmixed',
  JS = 'javascript',
  JSON = 'application/json',
  VUE = 'vue',
}
 
export interface CodeEditorProps {
  mode?: string;
  value?: string;
  readonly?: boolean;
  bordered?: boolean;
  autoFormat?: boolean;
}