summaryrefslogtreecommitdiff
path: root/examples/snowpack/src/pages/guides/vue.md
blob: 599a3def5baf4182de3cbe634b86b8dc1f6d7379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: ../../layouts/content.astro
title: Vue
tags: communityGuide
img: '/img/logos/vue.png'
imgBackground: '#f6f9f6'
description: How to use Vue with Snowpack using the Vue Plugin.
---

<div class="stub">
This article is a stub, you can help expand it into <a href="https://documentation.divio.com/how-to-guides/">guide format</a>
</div>

To support `.vue` files you will need the [Vue Plugin](https://github.com/snowpackjs/snowpack/tree/main/plugins/plugin-vue), which uses Vue 3.

```js
// snowpack.config.json
"plugins": ["@snowpack/plugin-vue"]
```