wiki调试修改,增加自研编辑器

This commit is contained in:
暮光:城中城
2020-06-06 15:34:49 +08:00
parent 2d9a5ab6b6
commit 0965f44866
22 changed files with 1501 additions and 525 deletions

View File

@@ -0,0 +1,27 @@
<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>