ttk-app-core
Version:
@ttk/recat enterprise develop framework
15 lines • 515 B
JavaScript
export default {
name: "merge-cell",
version: "0.0.1",
description: "合并单元格",
meta: null,
components: [],
config: option => option,
type: 'origin',
load: async (cb) => {
const app = await (() => import(/* webpackChunkName: "merge-cell" */ './app'))()
const action = await (() => import(/* webpackChunkName: "merge-cell" */ './action'))()
const reducer = await (() => import(/* webpackChunkName: "merge-cell" */ './reducer'))()
cb(app.default, action, reducer, null, null, 'merge-cell')
}
}