editor.vue 221 B

123456789101112131415
  1. <template lang="pug">
  2. editor-code
  3. </template>
  4. <script>
  5. export default {
  6. components: {
  7. editorCode: () => import(/* webpackChunkName: "editor" */ './editor-code.vue')
  8. }
  9. }
  10. </script>
  11. <style lang='scss'>
  12. </style>