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