astro/packages/integrations/vue/client.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
893 B
JavaScript
Raw Normal View History

import { h, createSSRApp, createApp } from 'vue';
2022-10-13 19:17:42 +00:00
import { setup } from 'virtual:@astrojs/vue/app';
import StaticHtml from './static-html.js';
2022-05-31 16:47:13 +00:00
export default (element) =>
async (Component, props, slotted, { client }) => {
2022-05-31 16:47:13 +00:00
delete props['class'];
if (!element.hasAttribute('ssr')) return;
2022-05-31 16:47:13 +00:00
// Expose name on host component for Vue devtools
const name = Component.name ? `${Component.name} Host` : undefined;
const slots = {};
for (const [key, value] of Object.entries(slotted)) {
slots[key] = () => h(StaticHtml, { value, name: key === 'default' ? undefined : key });
2022-05-31 16:47:13 +00:00
}
if (client === 'only') {
const app = createApp({ name, render: () => h(Component, props, slots) });
await setup(app);
2022-05-31 16:47:13 +00:00
app.mount(element, false);
} else {
const app = createSSRApp({ name, render: () => h(Component, props, slots) });
await setup(app);
2022-05-31 16:47:13 +00:00
app.mount(element, true);
}
};