14 lines
139 B
Vue
14 lines
139 B
Vue
<template>
|
|
<editor />
|
|
</template>
|
|
|
|
<script>
|
|
import editor from './editor';
|
|
|
|
export default {
|
|
components: {
|
|
editor
|
|
}
|
|
};
|
|
</script>
|