mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-09 12:09:00 +08:00
899 B
899 B
<template>
<route-menu :menu="menu" :width="150"></route-menu>
</template>
<script>
export default {
data() {
return {
menu: [
{
title: "组件",
subMenu: [
{
title: 'Layout 栅格',
path: '/layout'
},
{
title: 'Icon 图标',
path: '/icon'
}
]
}, {
title: "Button",
path: '/button'
}, {
title: "Tab",
path: '/tab'
}, {
title: "Zoom",
path: '/zoom'
}
]
}
}
}
</script>