()
| 17 | `, |
| 18 | ], |
| 19 | setup() { |
| 20 | const app = createApp(CustomElementApp) |
| 21 | app.use( |
| 22 | plugin, |
| 23 | defaultConfig({ |
| 24 | plugins: [createMultiStepPlugin()], |
| 25 | }) |
| 26 | ) |
| 27 | |
| 28 | const inst = getCurrentInstance() |
| 29 | if (inst) { |
| 30 | Object.assign((inst as any).appContext, app._context) |
| 31 | Object.assign((inst as any).provides, app._context.provides) |
| 32 | } |
| 33 | |
| 34 | return () => h(CustomElementApp) |
| 35 | }, |
| 36 | }) |
nothing calls this directly
no test coverage detected