refactor: mp/draft拆分组件

This commit is contained in:
dhb52
2023-04-16 22:30:00 +08:00
parent 30b8eeaccb
commit b5fb700e4e
6 changed files with 704 additions and 634 deletions

View File

@@ -0,0 +1,7 @@
import type { Article, NewsItem, NewsItemList } from './types'
import { createEmptyNewsItem } from './types'
import DraftTable from './DraftTable.vue'
import NewsForm from './NewsForm.vue'
export { DraftTable, NewsForm, createEmptyNewsItem }
export type { Article, NewsItem, NewsItemList }