3df41d2308
* fix(vscode): Markdown frontmatter should use TSX, not YAML * test: add test for #153 * chore: bump deps * chore: update to use @astrojs scope * fix: Markdown parse error when only child is `{expression}` * fix: update renderer edge cases * fix: failing test * fix: update renderer
18 lines
507 B
JavaScript
18 lines
507 B
JavaScript
import { renderToString } from '@vue/server-renderer';
|
|
import { h, createSSRApp } from 'vue';
|
|
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,
|
|
};
|