Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Nov 06:46
7444576

   🚨 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']
    ],
  }
})