summaryrefslogtreecommitdiff
path: root/packages/integrations/vue
diff options
context:
space:
mode:
authorGravatar Houston (Bot) <108291165+astrobot-houston@users.noreply.github.com> 2024-05-09 03:06:49 -0700
committerGravatar GitHub <noreply@github.com> 2024-05-09 11:06:49 +0100
commit770b9f06c3d67f89de527d8b3a842555e596c01f (patch)
tree1567d18564d05341e013d5cbff6c109701baabb1 /packages/integrations/vue
parent0ac090dca356a1dc282836f8154c0869ae793f5a (diff)
downloadastro-770b9f06c3d67f89de527d8b3a842555e596c01f.tar.gz
astro-770b9f06c3d67f89de527d8b3a842555e596c01f.tar.zst
astro-770b9f06c3d67f89de527d8b3a842555e596c01f.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r--packages/integrations/vue/CHANGELOG.md17
-rw-r--r--packages/integrations/vue/package.json2
2 files changed, 18 insertions, 1 deletions
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index e4fd2db61..b1f95541d 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,22 @@
# @astrojs/vue
+## 4.2.0
+
+### Minor Changes
+
+- [#10929](https://github.com/withastro/astro/pull/10929) [`082abb8`](https://github.com/withastro/astro/commit/082abb82d574a200f9168ee5ae92c65c71e29eda) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - 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 })],
+ });
+ ```
+
## 4.1.0
### Minor Changes
diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json
index f948f183e..d0e46a88a 100644
--- a/packages/integrations/vue/package.json
+++ b/packages/integrations/vue/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/vue",
- "version": "4.1.0",
+ "version": "4.2.0",
"description": "Use Vue components within Astro",
"type": "module",
"types": "./dist/index.d.ts",