astro/packages/renderers/renderer-vue
github-actions[bot] 3d9b665265
Version Packages (#1358)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2021-09-14 17:22:50 -07:00
..
CHANGELOG.md Version Packages (#1358) 2021-09-14 17:22:50 -07:00
client.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
index.js Fix Vue components nesting and add tests (#924) 2021-07-30 08:33:31 -04:00
package.json Version Packages (#1358) 2021-09-14 17:22:50 -07:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00
static-html.js Bugbash! (#263) 2021-05-28 17:19:40 -05:00

@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'
  ]
}

Documentation

Astro Renderer Documentation