mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
082abb82d5
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
18 lines
No EOL
408 B
Markdown
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 })
|
|
]
|
|
})
|
|
``` |