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
설치가 완료되면 파일 루트 디렉터리에 플러그인/디렉터리에 해당하는 플러그인 파일을 만듭니다. 이름은: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 })
플러그인 설정 옵션
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 필요에 따라 도입하는 방법에 관한 이 글은 여기에 소개되었습니다. 더 많은 Nuxt 필요에 따라 Element-UI를 도입하는 내용은 저희 이전의 글을 검색하거나 아래의 관련 글을 계속 보십시오. 앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기