fix: 🐛 删除Editor双向绑定,改为props传参

This commit is contained in:
chenkl
2020-12-24 16:55:31 +08:00
parent 5142e6e323
commit c395e27f67
32 changed files with 53 additions and 167 deletions

View File

@@ -1,6 +1,10 @@
import type { App } from 'vue'
import Dialog from './Dialog/index.vue'// Dialog组件
import ComTable from './Table/index.vue'// Table组件
import ComSearch from './Search/index.vue'// Search组件
export function setupGlobCom(app: App<Element>): void {
app.component('ComDialog', Dialog)
app.component('ComTable', ComTable)
app.component('ComSearch', ComSearch)
}