8986d33bfc
* Fix error handling in correct scope Also improve Vite IDs for better module graph lookups * Improve code frame * Add changeset * maybeLoc can be undefined * Add tests Co-authored-by: Matthew Phillips <matthew@skypack.dev>
18 lines
508 B
JavaScript
18 lines
508 B
JavaScript
import { h, createSSRApp } from 'vue';
|
|
import { renderToString } from 'vue/server-renderer';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
function check(Component) {
|
|
return !!Component['ssrRender'];
|
|
}
|
|
|
|
async function renderToStaticMarkup(Component, props, children) {
|
|
const app = createSSRApp({ render: () => h(Component, props, { default: () => h(StaticHtml, { value: children }) }) });
|
|
const html = await renderToString(app);
|
|
return { html };
|
|
}
|
|
|
|
export default {
|
|
check,
|
|
renderToStaticMarkup,
|
|
};
|