summaryrefslogtreecommitdiff
path: root/spec/frontend/__mocks__/@toast-ui/vue-editor/index.js
blob: 726ed0fa03017952a936080be1f2a428bde88728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export const Editor = {
  props: {
    initialValue: {
      type: String,
      required: true,
    },
    options: {
      type: Object,
    },
    initialEditType: {
      type: String,
    },
    height: {
      type: String,
    },
    previewStyle: {
      type: String,
    },
  },
  render(h) {
    return h('div');
  },
};

export const Viewer = {
  render(h) {
    return h('div');
  },
};