Blame view

src/views/system/menus/data/index.js 436 Bytes
xiaomiao committed
1 2 3 4 5 6 7 8
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
xiaomiao committed
9 10
        prop: "name",
        label: "菜单名称",
任超 committed
11
        align: 'left',
xiaomiao committed
12 13 14
        width: 300
      },
      {
xiaomiao committed
15 16
        prop: "code",
        label: "菜单代码"
xiaomiao committed
17 18
      },
      {
xiaomiao committed
19
        prop: "uri",
xiaomiao committed
20
        width: 260,
xiaomiao committed
21
        label: "链接路径"
xiaomiao committed
22 23 24 25 26
      },
    ]
  }
}
export default new data()