mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:28 -06:00
16 lines
221 B
Vue
16 lines
221 B
Vue
|
<template lang="pug">
|
||
|
editor-code
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {
|
||
|
editorCode: () => import(/* webpackChunkName: "editor" */ './editor-code.vue')
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss'>
|
||
|
|
||
|
</style>
|