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