Files
zyplayer-doc/zyplayer-doc-ui/wiki-ui/src/views/page/EditorTest.vue

28 lines
373 B
Vue
Raw Normal View History

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