Bundler Integration
Installation
TIP
Vite and Rollup are fully supported, while other bundlers have limited support.
bash
npm i -D unplugin-vue-macros
bash
yarn add -D unplugin-vue-macros
bash
pnpm add -D unplugin-vue-macros
ts
// vite.config.ts
import Vue from '@vitejs/plugin-vue'
import VueMacros from 'unplugin-vue-macros/vite'
// import VueJsx from '@vitejs/plugin-vue-jsx'
// import VueRouter from 'unplugin-vue-router/vite'
export default defineConfig({
plugins: [
VueMacros({
plugins: {
vue: Vue(),
// vueJsx: VueJsx(), // if needed
// vueRouter: VueRouter({ // if needed
// extensions: ['.vue', '.setup.tsx']
// })
},
// overrides plugin options
}),
],
})
ts
// rollup.config.js
import VueMacros from 'unplugin-vue-macros/rollup'
import Vue from 'unplugin-vue/rollup'
// import VueRouter from 'unplugin-vue-router/rollup'
export default {
plugins: [
VueMacros({
plugins: {
vue: Vue(),
// vueJsx: VueJsx(), // if needed
// vueRouter: VueRouter({ // if needed
// extensions: ['.vue', '.setup.tsx']
// })
},
// overrides plugin options
}),
],
}
js
// esbuild.config.js
import { build } from 'esbuild'
// import VueRouter from 'unplugin-vue-router/esbuild'
build({
plugins: [
require('unplugin-vue-macros/esbuild')({
plugins: {
vue: require('unplugin-vue/esbuild')(),
// vueJsx: VueJsx(), // if needed
// vueRouter: VueRouter({ // if needed
// extensions: ['.vue', '.setup.tsx']
// })
},
// overrides plugin options
}),
],
})
js
// webpack.config.js
module.exports = {
/* ... */
plugins: [
require('unplugin-vue-macros/webpack')({
// overrides plugin options
}),
],
}
js
// rspack.config.js
module.exports = {
/* ... */
plugins: [
require('unplugin-vue-macros/rspack')({
// overrides plugin options
}),
],
}
js
// rsbuild.config.js
module.exports = {
// ...
tools: {
rspack: {
plugins: [
require('unplugin-vue-macros/rspack')({
// overrides plugin options
}),
],
},
},
}
js
// vue.config.js
const { defineConfig } = require('@vue/cli-service')
const VueMacros = require('unplugin-vue-macros/webpack')
module.exports = defineConfig({
// ...
// ⚠️ IMPORTANT
parallel: false,
configureWebpack: {
plugins: [
VueMacros({
// overrides plugin options
}),
],
},
})
Configuration
See the Configurations for more details.
ts
import { defineConfig } from 'unplugin-vue-macros'
export default defineConfig({
// options
})
TypeScript Support
json
// tsconfig.json
{
"compilerOptions": {
// ...
"types": ["unplugin-vue-macros/macros-global" /* ... */]
}
}
json
// tsconfig.json
{
"compilerOptions": {
// ...
"types": ["unplugin-vue-macros/vue2-macros-global" /* ... */]
}
}
Volar Support
For detailed configuration, please refer to the description of the specific macro.
jsonc
{
"vueCompilerOptions": {
"plugins": ["unplugin-vue-macros/volar"],
},
}
Scoped Plugins
exportExpose
, exportProps
, and exportRender
plugins cannot be used at the same time unless providing a scope.
ts
import { defineConfig } from 'unplugin-vue-macros'
export default defineConfig({
exportExpose: {
include: ['**/export-expose/**'],
},
exportProps: {
include: ['**/export-props/**'],
},
exportRender: {
include: ['**/export-render/**'],
},
})
🎉 Congratulations! You have successfully set up Vue Macros.
To learn more about the macros, please visit All Macros 😆.