Nuxt配置Element-UI按需引入方法

Nuxt 使用 create-nuxt-app 建立項目時,選擇使用 Element-UI 爲默認組件庫,發現 Nuxt 沒有開啓 Element-UI 的按需引入配置,須要自行配置。css

安裝依賴

在 create-nuxt-app 中沒有選擇 Element-UI 的先安裝。vue

npm install element-ui --save

或者npm

yarn add element-ui

Element-UI 開啓按需引入,必須安裝 babel-plugin-component 插件。element-ui

npm install babel-plugin-component --save-dev

或者api

yarn add babel-plugin-component

安裝完成後,在文件根目錄建立(或已經存在) plugins/ 目錄下建立相應的插件文件,建立名爲:element-ui.js 的文件。babel

// element-ui.js
import Vue from 'vue'
import {
  Container,
  Header,
  Aside,
  Main,
  Menu,
  MenuItem,
  Button,
  Form,
  FormItem,
  Input
} from 'element-ui'
import locale from 'element-ui/lib/locale/lang/en'

const components = [
  Container,
  Header,
  Aside,
  Main,
  Menu,
  MenuItem,
  Button,
  Form,
  FormItem,
  Input
];

const Element = {
  install (Vue) {
    components.forEach(component => {
      Vue.component(component.name, component)
    })
  }
}

Vue.use(Element, { locale })

配置 plugins 選項

在 nuxt.config.js 文件中,配置 plugins 選項。app

module.exports = {
  /*
   ** Plugins to load before mounting the App
   ** https://nuxtjs.org/guide/plugins
   */
  plugins: ["@/plugins/element-ui"],
}

Nuxt 默認爲開啓 SSR,採用服務端渲染,也能夠手動配置關閉 SSR,配置爲:ide

module.exports = {
  /*
   ** Plugins to load before mounting the App
   ** https://nuxtjs.org/guide/plugins
   */
  plugins: [
    {
      src: "@/plugins/element-ui",
      ssr: false  // 關閉ssr
    }
  ],
}

若是在 create-nuxt-app 中默認選了 Element-UI 的,還須要將 Element-UI 的全局樣式去掉,即在 nuxt.config.js 中:ui

module.exports = {
  /*
   ** Global CSS
   */
  css: ['element-ui/lib/theme-chalk/index.css'],
}

刪除 'element-ui/lib/theme-chalk/index.css' 做爲全局樣式的打包配置,改成插件

module.exports = {
  /*
   ** Global CSS
   */
  css: [],
}

配置 babel 選項

在 nuxt.config.js 文件中,在選項 build 中配置 babel 選項:

module.exports = {
  /*
   ** Build configuration
   ** See https://nuxtjs.org/api/configuration-build/
   */
  build: {
    babel: {
      "plugins": [
        [
          "component",
          {
            "libraryName": "element-ui",
            "styleLibraryName": "theme-chalk"
          }
        ]
      ]
    }
  }
}

到此,Element-UI 按需引入配置完成。

相關文章
相關標籤/搜索