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
| import {dicthome} from '../store/dictionary'
| // 页面主菜单
| const mainmenu = [
| {
| name: dicthome.home,
| view: 'home',
| icon: 'fa-home',
| active: true
| },
| {
| name: dicthome.class,
| view: 'goodsclass',
| icon: 'fa-align-justify',
| active: false
| },
| {
| name: dicthome.shoppingcar,
| view: 'shoppingcar',
| icon: 'fa-shopping-cart',
| badge: null,
| active: false
| },
| {
| name: dicthome.personal,
| view: 'personal',
| icon: 'fa-user-o',
| active: false
| }
| ]
|
| export {
| mainmenu
| }
|
|