ElementUI

RollsRoycewk發表於2020-11-21

elementUI

按需使用

下載element-ui

yarn add element-ui
vue create my-app
cd my-app
// 最後一步即可
vue add element

vue add element

There are uncommitted changes in the current repository, it’s recommended to commit or stash them first.
當前儲存庫中有未提交的更改,建議先提交或儲存它們。

  • 會覆蓋掉你git上面的倉庫修改
    在這裡插入圖片描述
  • How do you want to import Element? (Use arrow keys)
    您希望如何匯入元素?(用箭頭鍵)
    在這裡插入圖片描述
  • Do you wish to overwrite Element’s SCSS variables?
    您希望重寫元素的SCSS變數嗎? no

在這裡插入圖片描述
在這裡插入圖片描述

plugins

在這裡插入圖片描述

import Vue from "vue";
import { Button, Message } from "element-ui";

// 安裝外掛 --->全域性註冊元件,按需載入自己需要什麼就引入什麼,會自動為你新增樣式
Vue.use(Button);

// 看文件
Vue.prototype.$message = Message;

main.js

import Vue from "vue";
import App from "./App.vue";

// 只需要引入他即可,內部就會安裝一些外掛,安裝幾個就用幾個
import "./plugins/element.js";

Vue.config.productionTip = false;

new Vue({
  render: (h) => h(App),
}).$mount("#app");

App.vue

<template>
  <div id="app">
    <el-button type="primary" @click="open">el-button</el-button>
  </div>
</template>

<script>
export default {
  name: 'app',
  methods: {
    open() {
      this.$message('需要引入message');
    },
  },
};
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

babel.config.js

module.exports = {
  presets: ["@vue/cli-plugin-babel/preset"],
  // 自動新增的,做按需載入element-ui的元件的樣式
  // 本來在main檔案引入的元件需要樣式,但是這裡就幫你自動引入元件樣式了
  plugins: [
    [
      "component",
      {
        libraryName: "element-ui",
        styleLibraryName: "theme-chalk",
      },
    ],
  ],
};

完整用法

yarn add element-ui

yarn add element-ui

引入

import Vue from "vue";
import App from "./App.vue";

// 引入這個庫
import ElementUI from "element-ui";
// 引入樣式檔案
import "element-ui/lib/theme-chalk/index.css";
Vue.config.productionTip = false;

// 使用elementUI,等於註冊全部元件,體積龐大
Vue.use(ElementUI);

new Vue({
  render: (h) => h(App),
}).$mount("#app");

使用

<template>
  <div id="app">
    app.....
    <!-- 元件的使用,element -->
    <el-button type="danger" @click="open">主要按鈕</el-button>

    <el-carousel height="150px" trigger="click" arrow="never">
      <el-carousel-item v-for="item in 4" :key="item">
        <h3 class="small">{{ item }}</h3>
      </el-carousel-item>
    </el-carousel>
  </div>
</template>

<script>
export default {
  name: 'App',
  methods: {
    open() {
      this.$message('你好啊,提示資訊');
    },
  },
};
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

.el-carousel__item h3 {
  background-color: green;
  height: 600px;
}
</style>

相關文章