溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

詳解如何在vue項(xiàng)目中引入elementUI組件

發(fā)布時(shí)間:2020-10-17 21:15:18 來源:腳本之家 閱讀:263 作者:Mr_houzi 欄目:web開發(fā)

前提:已經(jīng)安裝好Vue

初始化vue

vue init webpack itemname

運(yùn)行初始化demo

運(yùn)行一下初始后的demo,如果沒有問題則進(jìn)行安裝elementUI

npm run dev

安裝 elementUI

npm i element-ui -S

引入elementUI

在main.js中引入elementUI

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)

測(cè)試

下面我們來測(cè)試一下

在創(chuàng)建header.vue文件,復(fù)制一段elementUI的代碼

<template>
  <el-menu
   :default-active="activeIndex2"
   class="el-menu-demo"
   mode="horizontal"
   @select="handleSelect"
   background-color="#545c64"
   text-color="#fff"
   active-text-color="#ffd04b">
   <el-menu-item index="1">處理中心</el-menu-item>
   <el-submenu index="2">
    <template slot="title">我的工作臺(tái)</template>
    <el-menu-item index="2-1">選項(xiàng)1</el-menu-item>
    <el-menu-item index="2-2">選項(xiàng)2</el-menu-item>
    <el-menu-item index="2-3">選項(xiàng)3</el-menu-item>
   </el-submenu>
   <el-menu-item index="3"><a  target="_blank">訂單管理</a></el-menu-item>
  </el-menu>
</template>

<script>
 export default {
  data() {
   return {
    activeIndex: '1',
    activeIndex2: '1'
   };
  },
  methods: {
   handleSelect(key, keyPath) {
    console.log(key, keyPath);
   }
  }
 }
</script>

在App.vue中引入header.vue

<template>
 <div id="app">
  <Header></Header>
 </div>
</template>

<script>
import Header from './pages/header.vue'

export default {
 components:{
  Header,
 }
}
</script>

<style>

</style>

效果:

詳解如何在vue項(xiàng)目中引入elementUI組件

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI