Astro: @astrojs/vue@4.3.0 Release

Release date:
May 23, 2024
Previous version:
@astrojs/vue@4.2.0 (released May 9, 2024)
Magnitude:
9,075 Diff Delta
Contributors:
18 total committers
Data confidence:
Commits:

94 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored May 23, 2024
Authored May 15, 2024
Authored May 22, 2024
Authored May 22, 2024
Authored May 16, 2024
Authored May 18, 2024
Authored May 9, 2024
Authored May 22, 2024
Authored May 9, 2024
Authored May 17, 2024
Authored May 13, 2024

Top Contributors in @astrojs/vue@4.3.0

ematipico
bholmesdev
Princesseuh
itsMapleLeaf
florian-lefebvre
adrianlyjak
Xetera
niklas-wortmann
V3RON
BryceRussell

Directory Browser for @astrojs/vue@4.3.0

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #11055 b92de22 Thanks @niklas-wortmann! - Updates the devtools type to allow passing VueDevToolsOptions

    For more customization, you can pass options that the Vue DevTools Vite Plugin 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' }, }), ], }); ```