91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nuxt如何配置Element-UI按需引入

發布時間:2020-07-07 11:30:57 來源:億速云 閱讀:424 作者:清晨 欄目:開發技術

這篇文章主要介紹Nuxt如何配置Element-UI按需引入,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

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

安裝依賴

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

npm install element-ui --save

或者

yarn add element-ui

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

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

或者

yarn add babel-plugin-component

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

// 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 選項。

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

Nuxt 默認為開啟 SSR,采用服務端渲染,也可以手動配置關閉 SSR,配置為:

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 中:

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 按需引入配置完成。

以上是Nuxt如何配置Element-UI按需引入的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁武县| 太白县| 航空| 荣昌县| 兴隆县| 桐城市| 景德镇市| 西平县| 化州市| 鸡西市| 安吉县| 明溪县| 磐安县| 兴安县| 吴江市| 乡城县| 蒙阴县| 临沧市| 台北市| 肇东市| 凤台县| 陆丰市| 仪陇县| 和平区| 灌云县| 新田县| 个旧市| 姚安县| 乐昌市| 西华县| 余姚市| 巴林右旗| 新巴尔虎左旗| 肇东市| 东丽区| 达州市| 七台河市| 普兰县| 安阳市| 琼中| 柘城县|