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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
| <template>
| <a-layout-sider class="sider" width="256px" :collapsible="collapsible" v-model="collapsed" :trigger="null">
| <div class="logo">
| <router-link to="/dashboard/workplace">
| <img src="static/img/vue-antd-logo.png">
| <h1>Vue Ant Pro</h1>
| </router-link>
| </div>
| <i-menu :collapsed="collapsed" :menuData="menuData" @select="onSelect"/>
| </a-layout-sider>
| </template>
|
| <script>
| import ALayoutSider from 'ant-design-vue/es/layout/Sider'
| import IMenu from './menu'
| export default {
| name: 'SiderMenu',
| components: {IMenu, ALayoutSider},
| props: {
| collapsible: {
| type: Boolean,
| required: false,
| default: false
| },
| collapsed: {
| type: Boolean,
| required: false,
| default: false
| },
| menuData: {
| type: Array,
| required: true
| }
| },
| methods: {
| onSelect (obj) {
| this.$emit('menuSelect', obj)
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .sider{
| z-index: 10;
| box-shadow: 2px 0 6px rgba(0,21,41,.35);
| .logo{
| height: 64px;
| position: relative;
| line-height: 64px;
| padding-left: 24px;
| -webkit-transition: all .3s;
| transition: all .3s;
| background: #002140;
| overflow: hidden;
| h1{
| color: #fff;
| font-size: 20px;
| margin: 0 0 0 12px;
| font-family: "Myriad Pro","Helvetica Neue",Arial,Helvetica,sans-serif;
| font-weight: 600;
| display: inline-block;
| height: 32px;
| line-height: 32px;
| vertical-align: middle;
| }
| img{
| width: 32px;
| display: inline-block;
| vertical-align: middle;
| }
| }
| }
| </style>
|
|