Files
Yi.Admin/Yi.Vue2.x/src/views/AdmMenu.vue

25 lines
363 B
Vue
Raw Normal View History

2021-10-13 17:44:42 +08:00
<template>
2021-10-18 18:46:11 +08:00
<material-card color="primary" icon="mdi-account-outline">
<template #title>
菜单管理 <small class="text-body-1">菜单可分配一个接口</small>
</template>
<ccTreeview></ccTreeview>
</material-card>
2021-10-13 17:44:42 +08:00
</template>
<script>
export default {
created() {
2021-10-16 14:48:55 +08:00
},
2021-10-13 17:44:42 +08:00
data: () => ({
2021-10-16 14:48:55 +08:00
}),
methods: {
2021-10-16 14:48:55 +08:00
},
2021-10-13 17:44:42 +08:00
};
</script>