debian-mirror-gitlab/spec/frontend/__mocks__/@toast-ui/vue-editor/index.js
2020-05-24 23:13:21 +05:30

30 lines
400 B
JavaScript

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');
},
};