您现在的位置:首页 >> 前端 >> 内容

vue项目创建并结合element-ui框架的使用分析

时间:2018/7/11 14:48:41 点击:

  核心提示:这一篇主要是创建一个vue项目并结合饿了么框架element-ui。1.先创建vue项目,我准备把项目放在e盘下:E:\Work\RegisterProject;命令行进入这个目录:创建一个基于 we...

这一篇主要是创建一个vue项目并结合饿了么框架element-ui。

1.先创建vue项目,我准备把项目放在e盘下:E:\Work\RegisterProject;

vue项目创建并结合element-ui框架的使用分析

命令行进入这个目录:

vue项目创建并结合element-ui框架的使用分析

创建一个基于 webpack 模板的新项目

(1)vue init webpack register(项目名)

vue项目创建并结合element-ui框架的使用分析

需要yes按Enter健就可以了,不需要输入n,然后按Enter健。

vue项目创建并结合element-ui框架的使用分析

创建完成:在目录中可看到

vue项目创建并结合element-ui框架的使用分析

运行:命令行进入到刚创建好的目录:cd register

vue项目创建并结合element-ui框架的使用分析

运行:npm run dev

vue项目创建并结合element-ui框架的使用分析

成功:

vue项目创建并结合element-ui框架的使用分析

浏览器输入:https://localhost:8080/ ? 我的是https://localhost:8081/(那是因为我已经打开另一个vue项目,80端口已经被占用,第一次的一般不会被占用,输入https://localhost:8080/ 就可以了)。

出现这个界面说明vue项目创建成功:

vue项目创建并结合element-ui框架的使用分析

现在vue引入Element

1.打开cmd,进入到当前刚创建的vue项目目录

vue项目创建并结合element-ui框架的使用分析

在当前目录中运行:npm i element-ui -S

vue项目创建并结合element-ui框架的使用分析

我使用webstrom打开刚创建的项目;file-open

vue项目创建并结合element-ui框架的使用分析

如图所示:

vue项目创建并结合element-ui框架的使用分析

改变项目目录中的main.js文件;

初始main.js文件:

vue项目创建并结合element-ui框架的使用分析

改成:

import Vue from 'vue'
import App from './App'
import router from './router'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.config.productionTip = false
Vue.use(ElementUI)

如图所示:

vue项目创建并结合element-ui框架的使用分析

3.然后在.vue文件里就直接可以用了

例如:在src/components/Hello.vue做一下修改

<template>
<p class="hello">
<h1>{{ msg }}</h1>
<h2>Essential Links</h2>
<el-button>默认按钮</el-button>
<el-button type="primary">主要按钮</el-button>
<el-button type="text">文字按钮</el-button>
</p>
</template>
<script>
export default {
name: 'hello',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

运行:npm run dev(webstrom可以按Alt+F12键,输入npm run dev)

你将看到如下页面:

vue项目创建并结合element-ui框架的使用分析

成功的引入了Element!!

Tags:VU UE E项 项目 
作者:网络 来源:大海无量的博客