14 lines
203 B
Vue
14 lines
203 B
Vue
|
<template>
|
||
|
<CodeEditor></CodeEditor>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import CodeEditor from '@/components/code-editor.vue'
|
||
|
|
||
|
export default {
|
||
|
components: { CodeEditor }
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss"></style>
|