请用elementui写一个后台管理系统
时间: 2023-05-11 10:05:42 浏览: 96
好的,我可以为您提供一个基于 ElementUI 的后台管理系统的示例代码,您可以根据您的需求进行修改和定制。以下是示例代码:
```
<template>
<div class="admin">
<el-container>
<el-header>
<h1>后台管理系统</h1>
</el-header>
<el-container>
<el-aside width="200px">
<el-menu default-active="1" class="el-menu-vertical-demo" @select="handleSelect">
<el-submenu index="1">
<template slot="title">
<i class="el-icon-menu"></i>
<span>菜单一</span>
</template>
<el-menu-item-group>
<template slot="title">分组一</template>
<el-menu-item index="1-1">选项1</el-menu-item>
<el-menu-item index="1-2">选项2</el-menu-item>
</el-menu-item-group>
<el-menu-item-group title="分组二">
<el-menu-item index="1-3">选项3</el-menu-item>
</el-menu-item-group>
</el-submenu>
<el-menu-item index="2">
<i class="el-icon-setting"></i>
<span>菜单二</span>
</el-menu-item>
<el-menu-item index="3">
<i class="el-icon-location"></i>
<span>菜单三</span>
</el-menu-item>
</el-menu>
</el-aside>
<el-main>
<router-view></router-view>
</el-main>
</el-container>
</el-container>
</div>
</template>
<script>
export default {
name: 'Admin',
methods: {
handleSelect(index, indexPath) {
console.log(index, indexPath);
}
}
}
</script>
<style scoped>
.admin {
height: 100%;
display: flex;
flex-direction: column;
}
.el-header {
height: 60px;
background-color: #409EFF;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.el-container {
flex: 1;
display: flex;
}
.el-aside {
background-color: #f4f4f5;
padding: 20px;
}
.el-menu-vertical-demo {
width: 100%;
}
.el-main {
padding: 20px;
}
</style>
```
这是一个基本的后台管理系统框架,包括一个侧边栏菜单和一个主要的内容区域。您可以根据您的需求添加更多的菜单和页面,以及使用 ElementUI 提供的各种组件来构建您的后台管理系统。
阅读全文