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