edit.vue 208 B

1234567891011121314
  1. <template>
  2. <article-detail :is-edit="true" />
  3. </template>
  4. <script>
  5. import ArticleDetail from './components/ArticleDetail'
  6. export default {
  7. name: 'EditForm',
  8. components: { ArticleDetail }
  9. }
  10. </script>