🚨 Breaking Changes
🚀 Features
View changes on GitHub
Migration Guide
If you have previously configured the imports attribute, you need to rewrite the configuration as follows.
export default defineNuxtConfig({
modules: [
'@element-plus/nuxt'
],
elementPlus: {
imports: [
- 'useLocale'
+ ['useLocale', 'es/hooks/use-locale/index.mjs']
],
}
})