Files
zyplayer-doc/zyplayer-doc-ui/wiki-ui/src/views/page/EditorTest.vue
暮光:城中城 61938a840f 编辑器开发测试
2020-06-13 20:37:18 +08:00

28 lines
373 B
Vue

<template>
<div style="padding: 10px;" class="page-editor-vue">
<mg-editor></mg-editor>
</div>
</template>
<script>
import mgEditor from '../../components/editor2/MgEditor'
export default {
data() {
return {
editor: {},
};
},
components: {
'mg-editor': mgEditor,
},
mounted: function () {
},
methods: {
}
}
</script>
<style>
</style>