8d22e4eefe
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
public | ||
src | ||
.gitignore | ||
.npmrc | ||
astro.config.mjs | ||
package.json | ||
README.md | ||
tsconfig.json |
Using Vue with Astro
This example showcases Astro's built-in support for Vue.
Installation
Automatic
Bootstrap your Astro project with this template!
npm init astro -- --template framework-vue
Manual
To use Vue components in your Astro project:
-
Install
@astrojs/renderer-vue
npm i @astrojs/renderer-vue
-
Add
"@astrojs/renderer-vue"
to yourrenderers
inastro.config.mjs
.export default { renderers: [ "@astrojs/renderer-vue", // optionally, others... ] }
Usage
Write your Vue components as .vue
files in your project.