diff options
author | 2024-05-23 03:06:20 -0700 | |
---|---|---|
committer | 2024-05-23 11:06:20 +0100 | |
commit | 50775925f9b2b50c3259dfd3d6f687d9af454884 (patch) | |
tree | 320b18edee7df55ae4c69a2b169aa9ceccf85b04 /packages/integrations/vue | |
parent | 9a0e94b2e6bc41b370d8a0518004c6f3cb1b833e (diff) | |
download | astro-@astrojs/react@3.4.0.tar.gz astro-@astrojs/react@3.4.0.tar.zst astro-@astrojs/react@3.4.0.zip |
[ci] release (#11116)astro@4.9.0@astrojs/web-vitals@0.2.1@astrojs/vue@4.3.0@astrojs/react@3.4.0
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.md | 22 | ||||
-rw-r--r-- | packages/integrations/vue/package.json | 2 |
2 files changed, 23 insertions, 1 deletions
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index b1f95541d..acef2a55e 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,27 @@ # @astrojs/vue +## 4.3.0 + +### Minor Changes + +- [#11055](https://github.com/withastro/astro/pull/11055) [`b92de22`](https://github.com/withastro/astro/commit/b92de22d2853efc4da4270a3812b9db120d06d3a) Thanks [@niklas-wortmann](https://github.com/niklas-wortmann)! - Updates the `devtools` type to allow passing `VueDevToolsOptions` + + For more customization, you can pass options that the [Vue DevTools Vite Plugin](https://devtools-next.vuejs.org/guide/vite-plugin#options) supports. (Note: `appendTo` is not supported.) For example, you can set `launchEditor` to your preferred editor if you are not using Visual Studio Code: + + ```js title="astro.config.mjs" + import { defineConfig } from 'astro/config'; + import vue from '@astrojs/vue'; + + export default defineConfig({ + // ... + integrations: [ + vue({ + devtools: { launchEditor: 'webstorm' }, + }), + ], + }); + ``` + ## 4.2.0 ### Minor Changes diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index 4540e3eac..2381f9a86 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "4.2.0", + "version": "4.3.0", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", |