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