feat: Detail组件重构完成

This commit is contained in:
kailong321200875
2021-10-19 09:59:58 +08:00
parent 34221f387f
commit 7f5ef99ccc
12 changed files with 832 additions and 147 deletions

View File

@@ -2,9 +2,11 @@ import type { App } from 'vue'
import SvgIcon from './SvgIcon/index.vue' // svg组件
import ComSearch from './Search/index.vue' // search组件
import ComDialog from './Dialog/index.vue' // dialog组件
import ComDetail from './Detail/index.vue' // detail组件
export function setupGlobCom(app: App<Element>): void {
app.component('SvgIcon', SvgIcon)
app.component('ComSearch', ComSearch)
app.component('ComDialog', ComDialog)
app.component('ComDetail', ComDetail)
}