0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/.changeset/thin-rabbits-wait.md
Florian Lefebvre 082abb82d5
feat(vue): add support for devtools (#10929)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2024-05-06 16:02:06 +02:00

18 lines
No EOL
408 B
Markdown

---
"@astrojs/vue": minor
---
Adds a `devtools` option
You can enable the [official Vue DevTools](https://devtools-next.vuejs.org/) while working in development mode by setting `devtools:true` in your `vue()` integration config:
```js
import { defineConfig } from "astro/config"
import vue from "@astrojs/vue"
export default defineConfig({
integrations: [
vue({ devtools: true })
]
})
```