# 右键菜单
# 禁用右键菜单
你可以通过配置 :contextmenu="false"
来禁用右键菜单
示例:
<router-tab :contextmenu="false" />
1
# 自定义右键菜单
通过数组方式配置 contextmenu
,可以自定义右键菜单
示例:
<template>
<router-tab
:class="{ 'is-fullscreen': fullscreen }"
:contextmenu="contextmenu"
/>
</template>
<script>
// 引入全屏混入
import fullscreen from '../../mixins/fullscreen'
export default {
mixins: [fullscreen],
computed: {
// 右键菜单
contextmenu() {
return [
// 使用内置菜单
'refresh',
// 扩展内置菜单:添加图标
{
id: 'close',
icon: 'rt-icon-close'
},
// 扩展内置菜单:修改执行方法
{
id: 'closeOthers',
handler({ $menu }) {
$menu.closeMulti($menu.others)
alert('关闭其他页签')
}
},
// 自定义菜单
{
id: 'custom',
title: '自定义操作',
tips: '这是一个自定义操作',
icon: 'rt-icon-doc',
class: 'custom-action',
// 是否显示,不提供则默认显示
visible(context) {
return context.$tabs.items.length < 3
},
// 是否启用,不提供则默认启用
enable(context) {
return !(context.data.index % 2)
},
// 点击触发
handler(context) {
console.log(context)
alert('这是自定义操作,请打开控制台查看输出参数')
}
},
// 拥有状态的菜单 - 全屏
{
id: 'fullscreen',
title: () => (this.fullscreen ? '退出全屏' : '全屏'),
icon: () =>
this.fullscreen ? 'rt-icon-fullscreen-exit' : 'rt-icon-fullscreen',
// 点击触发
handler: () =>
setTimeout(() => {
this.fullscreen = !this.fullscreen
}, 300)
}
]
}
}
}
</script>
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
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