Minor Changes
-
#10929
082abb8
Thanks @florian-lefebvre! - Adds adevtools
optionYou can enable the official Vue DevTools while working in development mode by setting
devtools:true
in yourvue()
integration config:import { defineConfig } from 'astro/config'; import vue from '@astrojs/vue'; export default defineConfig({ integrations: [vue({ devtools: true })], });