UNPKG

ttk-app-core

Version:

@ttk/recat enterprise develop framework

15 lines 478 B
export default { name: "404", version: "0.0.1", description: "404", meta: null, components: [], config: option=>option, type: 'origin', load: async (cb) => { const app = await (()=> import(/* webpackChunkName: "app-root" */ './app'))() const action = await (()=> import(/* webpackChunkName: "app-root" */ './action'))() const reducer = await (()=> import(/* webpackChunkName: "app-root" */ './reducer'))() cb(app.default, action, reducer, null, null, '404') } }