(component: any, options?: any)
| 22 | ): Promise<string> |
| 23 | |
| 24 | export function renderToString(component: any, options?: any): Promise<string> { |
| 25 | if (options?.attachTo) { |
| 26 | console.warn('attachTo option is not available for renderToString') |
| 27 | } |
| 28 | |
| 29 | const { app } = createInstance(component, options) |
| 30 | return baseRenderToString(app) |
| 31 | } |
no test coverage detected
searching dependent graphs…