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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _index = require('../src/index');
var _index2 = _interopRequireDefault(_index);
var _index3 = require('../../menu/index');
var _index4 = _interopRequireDefault(_index3);
var _index5 = require('../../icon/index');
var _index6 = _interopRequireDefault(_index5);
require('../assets/index.less');
require('../../menu/style/index');
require('../../icon/style/index');
require('../../button/style/index');
require('../../select/style/index');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
var SubMenu = _index4['default'].SubMenu;
var MenuItemGroup = _index4['default'].ItemGroup;
exports['default'] = {
data: function data() {
return {
placement: 'right',
childShow: true,
width: '20vw',
height: null
};
},
methods: {
onChange: function onChange(event) {
var _this = this;
var value = event.target.value;
this.placement = value;
this.width = value === 'right' || value === 'left' ? '20vw' : null;
this.height = value === 'right' || value === 'left' ? null : '20vh';
this.childShow = false; // 删除子级,删除切换时的过渡动画。。。
this.$nextTick(function () {
_this.childShow = true;
});
}
},
render: function render() {
var h = arguments[0];
return h('div', [this.childShow && h(
_index2['default'],
{
attrs: { placement: this.placement, width: this.width, height: this.height }
},
[h(
_index4['default'],
{
attrs: { defaultSelectedKeys: ['1'], defaultOpenKeys: ['sub1'], mode: 'inline' }
},
[h(
SubMenu,
{
key: 'sub1',
attrs: { title: h('span', [h(_index6['default'], {
attrs: { type: 'mail' }
}), h('span', ['Navigation One'])])
}
},
[h(
MenuItemGroup,
{ key: 'g1', attrs: { title: 'Item 1' }
},
[h(
_index4['default'].Item,
{ key: '1' },
['Option 1']
), h(
_index4['default'].Item,
{ key: '2' },
['Option 2']
)]
), h(
MenuItemGroup,
{ key: 'g2', attrs: { title: 'Item 2' }
},
[h(
_index4['default'].Item,
{ key: '3' },
['Option 3']
), h(
_index4['default'].Item,
{ key: '4' },
['Option 4']
)]
)]
), h(
SubMenu,
{
key: 'sub2',
attrs: { title: h('span', [h(_index6['default'], {
attrs: { type: 'appstore' }
}), h('span', ['Navigation Two'])])
}
},
[h(
_index4['default'].Item,
{ key: '5' },
['Option 5']
), h(
_index4['default'].Item,
{ key: '6' },
['Option 6']
), h(
SubMenu,
{ key: 'sub3', attrs: { title: 'Submenu' }
},
[h(
_index4['default'].Item,
{ key: '7' },
['Option 7']
), h(
_index4['default'].Item,
{ key: '8' },
['Option 8']
)]
)]
), h(
SubMenu,
{
key: 'sub4',
attrs: { title: h('span', [h(_index6['default'], {
attrs: { type: 'setting' }
}), h('span', ['Navigation Three'])])
}
},
[h(
_index4['default'].Item,
{ key: '9' },
['Option 9']
), h(
_index4['default'].Item,
{ key: '10' },
['Option 10']
), h(
_index4['default'].Item,
{ key: '11' },
['Option 11']
), h(
_index4['default'].Item,
{ key: '12' },
['Option 12']
)]
)]
)]
), h(
'div',
{
style: {
width: '100%',
height: 667,
background: '#fff000',
color: '#000',
textAlign: 'center',
lineHeight: '667px'
}
},
['\u9009\u62E9\u4F4D\u7F6E\uFF1A', h(
'select',
{
style: { width: '120px', marginLeft: '20px' },
domProps: {
'value': this.placement
},
on: {
'change': this.onChange
}
},
[h(
'option',
{
attrs: { value: 'left' }
},
['\u5DE6\u8FB9 left']
), h(
'option',
{
attrs: { value: 'top' }
},
['\u4E0A\u9762 top']
), h(
'option',
{
attrs: { value: 'right' }
},
['\u53F3\u8FB9 right']
), h(
'option',
{
attrs: { value: 'bottom' }
},
['\u4E0B\u9762 bottom']
)]
)]
)]);
}
};