10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
export function tabSettings() {
|
|
return {
|
|
visibleOn: '${role === "ADMINISTRATOR"}',
|
|
title: '系统管理',
|
|
icon: 'fa fa-gear',
|
|
body: [
|
|
'hello world'
|
|
]
|
|
}
|
|
} |