>  기사  >  웹 프론트엔드  >  element-ui를 구축하는 방법(자세한 튜토리얼)

element-ui를 구축하는 방법(자세한 튜토리얼)

亚连
亚连원래의
2018-06-05 09:40:4621283검색

아래에서는 Element-UI 구축을 위한 Vue 프런트엔드 엔지니어링 작업의 예를 공유하겠습니다. 이는 좋은 참고 가치가 있으며 모든 사람에게 도움이 되기를 바랍니다.

1. npm 이미지 설치

(1) node.js를 다운로드하고 node.js의 환경 변수를 구성합니다.

PATH 환경 변수가 Node.js로 구성되어 있는지 확인하고 시작을 클릭합니다=》 실행=》 "cmd" 입력 => "path" 명령 입력

Node.js 버전 확인

명령 창에 npm install -g cnpm –registry=https://registry.npm을 입력하세요. taobao.org

2. 전역 vue-cli 설치

(1) npm install -g vue-cli를 누르고 Enter를 눌러 설치가 성공했는지 확인합니다. vue 정보에 설치가 성공했다는 메시지가 표시됩니다

3. 전역적으로 vue-cli 설치

(1) npm install --global vue-cli

4. webpack 템플릿을 기반으로 새 프로젝트 생성

(1) vue init webpack my -project (프로젝트 이름)
(2) cd my-project
(3) npm install
(4) npm run dev

5. 필요한 환경 설치 예정

(1) npm install sass -loader --save-dev
(2) npm install gulp-sass
(3) npm install --save axios
(4) npm install element-ui -S
(5) npm install vuex --save

6. 가져와야 하는 패키지(element-ui)

(1) import ElementUI from 'element-ui'
(2) import 'element- ui/lib/theme-default/index.css'
(3 ) import Vue from 'vue'
(4) 사용: Vue.use(ElementUI)

7. 프로젝트 코드 구조

프로젝트 소스 코드 : https://github.com/davis0511/school-ui

(1)

(2) Home.vue

<template>
	<el-row class="container">
		<el-col :span="24" class="header">
		 <el-col :span="20" class="logo">
		  <img src="./assets/logo4.png" /> <span>学校管理<i class="txt">系统</i></span>
		 </el-col>
		 <el-col :span="4" class="userinfo">
				<el-dropdown trigger="click">
					<span class="el-dropdown-link userinfo-inner"><img :src="this.sysUserAvatar" /> {{sysUserName}}</span>
						<el-dropdown-menu slot="dropdown">
						<el-dropdown-item>我的消息</el-dropdown-item>
						<el-dropdown-item>设置</el-dropdown-item>
						<el-dropdown-item pided @click.native="logout">退出登录</el-dropdown-item>
					</el-dropdown-menu>
				</el-dropdown>
		  </el-col>
		</el-col>
		<el-col :span="24" class="main">
			<aside>
			<el-menu :default-active="$route.path" class="el-menu-vertical-demo" @open="handleopen" @close="handleclose" @select="handleselect"
			theme="dark" unique-opened router>
				<template v-for="(item,index) in $router.options.routes" v-if="!item.hidden">
					<el-submenu :index="index+&#39;&#39;" v-if="!item.leaf">
						<template slot="title"><i :class="item.iconCls"></i>{{item.name}}</template>
						<el-menu-item v-for="child in item.children" :index="child.path" v-if="!child.hidden">{{child.name}}</el-menu-item>
					</el-submenu>
					<el-menu-item v-if="item.leaf&&item.children.length>0" :index="item.children[0].path"><i :class="item.iconCls"></i>{{item.children[0].name}}</el-menu-item>
				</template>
			</el-menu>
			</aside>
			<section class="content-container">
				 <p class="grid-content bg-purple-light">
					<el-col :span="24" class="breadcrumb-container">
						<strong class="title">{{$route.name}}</strong>
						<el-breadcrumb separator="/" class="breadcrumb-inner">
							<el-breadcrumb-item v-for="item in $route.matched">
								 {{ item.name }}
							</el-breadcrumb-item>
						</el-breadcrumb>
					</el-col>
					<el-col :span="24" class="content-wrapper">
						<transition>
						<router-view></router-view>
						</transition>
					</el-col>
				</p>
			</section>
		</el-col>
	</el-row>
</template>
<script>
 export default{
		data() {
			return { 
				sysUserName:&#39;&#39;
			}
	 },
		methods:{
				onSubmit() {
				console.log(&#39;submit!&#39;);
				},
				handleopen() {
				//console.log(&#39;handleopen&#39;);
				},
				handleclose() {
				//console.log(&#39;handleclose&#39;);
				},
				handleselect: function (a, b) {
				},
				//退出登录
				logout: function () {
					var _this = this;
					this.$confirm(&#39;确认退出吗?&#39;, &#39;提示&#39;, {
					//type: &#39;warning&#39;
					}).then(() => {
					sessionStorage.removeItem(&#39;user&#39;);
					_this.$router.push(&#39;/login&#39;);
					}).catch(() => {
      
				}); 
			}
		}
 }
</script> 
<style scoped lang="scss">
.container {
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
	.header {
		height: 60px;
		line-height: 60px;
		background: #1F2D3D;
		color: #c0ccda;
		.userinfo {
				text-align: right;
				padding-right: 35px;
				.userinfo-inner {
				color: #c0ccda;
				cursor: pointer;
				img {
				width: 40px;
				height: 40px;
				border-radius: 20px;
				margin: 10px 0px 10px 10px;
				float: right;
				}
			}
		}
		.logo {
			font-size: 22px;
			img {
			width: 40px;
			float: left;
			margin: 10px 10px 10px 18px;
			}
			.txt {
			color: #20a0ff
			}
		}
	}
	.main {
		background: #324057;
		position: absolute;
		top: 60px;
		bottom: 0px;
		overflow: hidden;
		aside {
		width: 230px;
		}
	.content-container {
		background: #f1f2f7;
		position: absolute;
		right: 0px;
		top: 0px;
		bottom: 0px;
		left: 230px;
		overflow-y: scroll;
		padding: 20px;
		.breadcrumb-container {
			margin-bottom: 15px;
			.title {
				width: 200px;
				float: left;
				color: #475669;
			}
			.breadcrumb-inner {
				float: right;
			}
  }
	 .content-wrapper {
			background-color: #fff;
			box-sizing: border-box;
	 }
  }
 }
}
</style>

(3) App.vue

(4) ) main.js

import Vue from &#39;vue&#39;
import Router from &#39;vue-router&#39; 
import App from &#39;./App&#39;
import routes from &#39;./router&#39;
import ElementUI from &#39;element-ui&#39;
import &#39;element-ui/lib/theme-default/index.css&#39;
Vue.use(Router) 
Vue.use(ElementUI)
const router = new Router({
 routes
});
Vue.config.productionTip = false
new Vue({ 
 router, 
 render: h => h(App)
}).$mount(&#39;#app&#39;)

(5 )router .js

import Home from &#39;./Home&#39; 
import classes from &#39;./class/classes&#39; 
import student from &#39;./student/student&#39; 
let router = [
 {
  path: &#39;/&#39;,
  name: &#39;学校&#39;,
  component: Home,
  redirect: &#39;/classes&#39;,
 iconCls: &#39;fa fa-id-card-o&#39;,
 children: [
{ path: &#39;/classes&#39;, component: classes, name: &#39;班级管理&#39; },
{ path: &#39;/student&#39;, component: student, name: &#39;学生管理&#39; }
  ] 
 }
]; 
export default router;

8 완료 후 인터페이스 렌더링은 다음과 같습니다.

The 위의 내용은 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.

관련 기사:

Puppeteer를 사용하여 가장 인기 있는 슬라이딩 인증 코드를 해독하는 방법

elementUI를 사용하여 Vue에서 사용자 정의 테마 메서드를 구현하는 방법

jquery에서 동적으로 생성된 태그에 이벤트 바인딩( 자세한 튜토리얼)

위 내용은 element-ui를 구축하는 방법(자세한 튜토리얼)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.