astro/packages/renderers/renderer-vue
Francois Valdy 5f5dc60976
Add missing licenses to published packages (#2166)
* chore: add missing licenses

* chore: update package.json info

Co-authored-by: Nate Moore <nate@skypack.dev>
2021-12-13 15:14:34 -06:00
..
CHANGELOG.md [ci] release (#2071) 2021-12-02 13:01:17 -05:00
client.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06:00
index.js 🚀 Astro Next (0.21.0) (#1406) 2021-10-29 15:30:22 -04:00
package.json Add missing licenses to published packages (#2166) 2021-12-13 15:14:34 -06:00
README.md Docs: Add READMEs for renderers (#1351) 2021-09-14 16:26:23 -07:00
server.js fix: renderer behavior with no children (#2078) 2021-12-02 10:30:15 -06: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