在vue中进行ElementUI 组件的安装、引入 npm i element-ui -S
作者:互联网
在vue中进行ElementUI 组件的安装、引入
1. 安装、引入elementUI
- cmd进入vue项目所在文件夹
- 安装 elementUI
npm i element-ui -S
- 在main.js中引入
import ElementUI from 'element-ui'; //element-ui的全部组件
import 'element-ui/lib/theme-chalk/index.css'; //element-ui的css
Vue.use(ElementUI); //使用elementUI
- 1
- 2
- 3
- 4
2. 测试是否引入成功
- 在components 文件夹下新建一个test.vue文件,将测试代码粘贴过去
测试代码如下:
<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">我的工作台</template>
<el-menu-item index="2-1">选项1</el-menu-item>
<el-menu-item index="2-2">选项2</el-menu-item>
<el-menu-item index="2-3">选项3</el-menu-item>
</el-submenu>
<el-menu-item index="3">
<a href="https://www.ele.me" 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>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 在App.vue中引入test.vue
<template>
<div id="app">
<Test></Test>
<router-view/>
</div>
</template>
<script>
import Test from "./components/test.vue"
export default {
//组件
components:{
Test,//速写属性
},
name: 'App'
}
</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>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 启动项目,查看结果
npm run dev
效果:
引入成功啦!
标签:npm,vue,ElementUI,element,组件,ui,引入 来源: https://www.cnblogs.com/sunny3158/p/16646090.html