// import { createVuePlugin as vue } from 'vite-plugin-vue2' export default defineConfig({ plugins: [ vue(), vueBridge({ vueVersion: '3' // or '2' localizeDeps: true }) ] }) ``` ## Options ```ts interface VueBridgePluginOptions { vueVersion: '2' | '3' localizeDeps?: tru...