31d0688016
* Expose name on host component for Vue devtools * Add changeset * Update changeset to patch from minor * [ci] collect stats * [ci] collect stats Co-authored-by: leviceccato <leviceccato@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@matthewphillips.info> |
||
---|---|---|
.. | ||
CHANGELOG.md | ||
client.js | ||
index.js | ||
package.json | ||
README.md | ||
server.js | ||
static-html.js |
@astrojs/renderer-vue
This is a plugin for Astro apps that enables server-side rendering of Vue 3.x components.
Installation
Install @astrojs/renderer-vue
and then add it to your astro.config.mjs
in the renderers
property:
npm install @astrojs/renderer-vue
astro.config.mjs
export default {
// ...
renderers: [
// ...
'@astrojs/renderer-vue'
]
}