edit.vue 200 Bytes
<template>
  <topic-detail :is-edit="true"/>
</template>

<script>
import TopicDetail from './components/TopicDetail'

export default {
  name: 'EditTopic',
  components: { TopicDetail }
}
</script>