Vue初體驗之Element的使用

lvbin8023發表於2019-02-06

1、安裝vue-cli,推薦在當前專案全域性安裝,同時確保vue ui正常使用。

npm install -g @vue/cli && vue ui
# OR yarn安裝會更快
yarn global add @vue/cli && vue ui
複製程式碼

Vue初體驗之Element的使用
使用yarn安裝完之後會自動啟動GUI,也就是在圖形介面下建立vue專案。為了快捷的操作,這裡還是使用命令列來建立專案。

2、windows使用cmd或是其它命令列工具建立Vue專案,我這裡使用的是cmder

vue create my-project
複製程式碼

Vue初體驗之Element的使用
進行預設配置或是自定義配置,配置完成後自動安裝依賴檔案。
Vue初體驗之Element的使用
Vue初體驗之Element的使用
Vue初體驗之Element的使用
3、進入專案,執行命令列,在瀏覽器開啟提供的埠就可以啟動這個服務了。

cd my-project
yarn serve
複製程式碼

Vue初體驗之Element的使用
Vue初體驗之Element的使用
4、安裝element-uimy-project的專案裡,等待片刻。

yarn add element-ui
複製程式碼

Vue初體驗之Element的使用
main.js中寫入以下內容,根據實際情況刪減。

import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

Vue.use(ElementUI);
複製程式碼

5、我們以element-ui官網的元件按鈕樣式為例,在要引用的檔案中插入以下內容。

Vue初體驗之Element的使用

<el-row>
  <el-button>預設按鈕</el-button>
  <el-button type="primary">主要按鈕</el-button>
  <el-button type="success">成功按鈕</el-button>
  <el-button type="info">資訊按鈕</el-button>
  <el-button type="warning">警告按鈕</el-button>
  <el-button type="danger">危險按鈕</el-button>
</el-row>
複製程式碼

現在重新執行命令列yarn serve,重新整理頁面。

Vue初體驗之Element的使用
6、接下來再以element-ui官網的元件Cascader級聯選擇器樣式為例,在要引用的檔案中插入以下內容。
Vue初體驗之Element的使用

// 引用的頁面中
<div class="block">
  <span class="demonstration">預設 click 觸發子選單</span>
  <el-cascader
    :options="options"
    v-model="selectedOptions">
  </el-cascader>
</div>
// 引用頁面的script標籤內
<script>
  export default {
    data() {
      return {
        options: [{
          value: 'zhinan',
          label: '指南',
          children: [{
            value: 'shejiyuanze',
            label: '設計原則',
            children: [{
              value: 'yizhi',
              label: '一致'
            }, {
              value: 'fankui',
              label: '反饋'
            }, {
              value: 'xiaolv',
              label: '效率'
            }, {
              value: 'kekong',
              label: '可控'
            }]
          }, {
            value: 'daohang',
            label: '導航',
            children: [{
              value: 'cexiangdaohang',
              label: '側向導航'
            }, {
              value: 'dingbudaohang',
              label: '頂部導航'
            }]
          }]
        }, {
          value: 'zujian',
          label: '元件',
          children: [{
            value: 'basic',
            label: 'Basic',
            children: [{
              value: 'layout',
              label: 'Layout 佈局'
            }, {
              value: 'color',
              label: 'Color 色彩'
            }, {
              value: 'typography',
              label: 'Typography 字型'
            }, {
              value: 'icon',
              label: 'Icon 圖示'
            }, {
              value: 'button',
              label: 'Button 按鈕'
            }]
          }, {
            value: 'form',
            label: 'Form',
            children: [{
              value: 'radio',
              label: 'Radio 單選框'
            }, {
              value: 'checkbox',
              label: 'Checkbox 多選框'
            }, {
              value: 'input',
              label: 'Input 輸入框'
            }, {
              value: 'input-number',
              label: 'InputNumber 計數器'
            }, {
              value: 'select',
              label: 'Select 選擇器'
            }, {
              value: 'cascader',
              label: 'Cascader 級聯選擇器'
            }, {
              value: 'switch',
              label: 'Switch 開關'
            }, {
              value: 'slider',
              label: 'Slider 滑塊'
            }, {
              value: 'time-picker',
              label: 'TimePicker 時間選擇器'
            }, {
              value: 'date-picker',
              label: 'DatePicker 日期選擇器'
            }, {
              value: 'datetime-picker',
              label: 'DateTimePicker 日期時間選擇器'
            }, {
              value: 'upload',
              label: 'Upload 上傳'
            }, {
              value: 'rate',
              label: 'Rate 評分'
            }, {
              value: 'form',
              label: 'Form 表單'
            }]
          }, {
            value: 'data',
            label: 'Data',
            children: [{
              value: 'table',
              label: 'Table 表格'
            }, {
              value: 'tag',
              label: 'Tag 標籤'
            }, {
              value: 'progress',
              label: 'Progress 進度條'
            }, {
              value: 'tree',
              label: 'Tree 樹形控制元件'
            }, {
              value: 'pagination',
              label: 'Pagination 分頁'
            }, {
              value: 'badge',
              label: 'Badge 標記'
            }]
          }, {
            value: 'notice',
            label: 'Notice',
            children: [{
              value: 'alert',
              label: 'Alert 警告'
            }, {
              value: 'loading',
              label: 'Loading 載入'
            }, {
              value: 'message',
              label: 'Message 訊息提示'
            }, {
              value: 'message-box',
              label: 'MessageBox 彈框'
            }, {
              value: 'notification',
              label: 'Notification 通知'
            }]
          }, {
            value: 'navigation',
            label: 'Navigation',
            children: [{
              value: 'menu',
              label: 'NavMenu 導航選單'
            }, {
              value: 'tabs',
              label: 'Tabs 標籤頁'
            }, {
              value: 'breadcrumb',
              label: 'Breadcrumb 麵包屑'
            }, {
              value: 'dropdown',
              label: 'Dropdown 下拉選單'
            }, {
              value: 'steps',
              label: 'Steps 步驟條'
            }]
          }, {
            value: 'others',
            label: 'Others',
            children: [{
              value: 'dialog',
              label: 'Dialog 對話方塊'
            }, {
              value: 'tooltip',
              label: 'Tooltip 文字提示'
            }, {
              value: 'popover',
              label: 'Popover 彈出框'
            }, {
              value: 'card',
              label: 'Card 卡片'
            }, {
              value: 'carousel',
              label: 'Carousel 走馬燈'
            }, {
              value: 'collapse',
              label: 'Collapse 摺疊皮膚'
            }]
          }]
        }, {
          value: 'ziyuan',
          label: '資源',
          children: [{
            value: 'axure',
            label: 'Axure Components'
          }, {
            value: 'sketch',
            label: 'Sketch Templates'
          }, {
            value: 'jiaohu',
            label: '元件互動文件'
          }]
        }],
        selectedOptions: [],
        selectedOptions2: []
      };
    }
  };
</script>
複製程式碼

成功了有木有!

Vue初體驗之Element的使用
7、再以element-ui官網的元件日曆樣式為例,在要引用的檔案中插入以下內容。
Vue初體驗之Element的使用

// 引用的頁面中
<div class="block">
    <span class="demonstration">預設</span>
    <el-date-picker
      v-model="value1"
      type="date"
      placeholder="選擇日期">
    </el-date-picker>
  </div>
  <div class="block">
    <span class="demonstration">帶快捷選項</span>
    <el-date-picker
      v-model="value2"
      align="right"
      type="date"
      placeholder="選擇日期"
      :picker-options="pickerOptions1">
    </el-date-picker>
  </div>
  // 引用頁面的script標籤內,直接複製到前面的data裡面
  pickerOptions1: {
          disabledDate(time) {
            return time.getTime() > Date.now();
          },
          shortcuts: [{
            text: '今天',
            onClick(picker) {
              picker.$emit('pick', new Date());
            }
          }, {
            text: '昨天',
            onClick(picker) {
              const date = new Date();
              date.setTime(date.getTime() - 3600 * 1000 * 24);
              picker.$emit('pick', date);
            }
          }, {
            text: '一週前',
            onClick(picker) {
              const date = new Date();
              date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
              picker.$emit('pick', date);
            }
          }]
        },
        value1: '',
        value2: '',
複製程式碼

Vue初體驗之Element的使用
總結:安裝-->複製程式碼-->執行,相當於是Vue中的“bootstrap”,根據自己專案的時間情況進行一點調整就可以用了。

現在有個問題,如果我們需要自定義主題呢?畢竟好看的東西都是千篇一律,沒有一些個性也是難免會看膩的。這裡可以通過安裝element-theme進行主題的自定義設定。

1、首先還是使用命令列在專案裡全域性安裝element-theme

yarn global add element-theme 
複製程式碼

Vue初體驗之Element的使用
Vue初體驗之Element的使用
2、然後安裝主題生成工具element-theme-chalk

yarn add element-theme-chalk --dev
複製程式碼

主題生成工具安裝完成後,全域性安裝的話可以通過命令列et呼叫工具。命令列et -i可在當前目錄生成一個檔案element-variables.scss。這裡就可以直接引用了

Vue初體驗之Element的使用
Vue初體驗之Element的使用
3、當然也可以使用命令列et編譯主題,進行更深層次的主題定製。之後會生成一個主題目錄theme,包含很多編譯好的css檔案,可以只留下index.css檔案。
Vue初體驗之Element的使用
main.js檔案中引入的index.css改成theme目錄下的index.css

import '../theme/index.css'
複製程式碼

4、現在我們嘗試下修改前面生成的檔案樣式,element-variables.scss,修改$--color-primary: #409EFF !default;的顏色為黑色。記得修改完後要用命令列et進行編譯。

原來的顏色:

Vue初體驗之Element的使用
修改編譯後的顏色:
Vue初體驗之Element的使用
5、使用命令列et -w可以實時監聽檔案element-variables.scss的變化,自動編譯。

總結:安裝主題element-theme-->安裝主題生成工具element-theme-chalk-->命令列et -i生成element-variables.scss檔案-->命令列et編譯生成theme目錄-->修改引入index.css路徑-->命令列et -w監聽element-variables.scss檔案的變化,自動編譯

相關文章