您好,登錄后才能下訂單哦!
前提:已經(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>
效果:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(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)容。