mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
import { Coin, DataLine, Document, Search } from '@element-plus/icons-vue'
|
|
|
|
const menus = [
|
|
{
|
|
path: '/',
|
|
name: 'dashboard',
|
|
icon: Search,
|
|
label: '日志检索',
|
|
color: '#0081dd',
|
|
component: () => import('./views/dashboard.vue'),
|
|
},
|
|
]
|
|
export default menus
|