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 {
|
2021-10-15 20:33:08 +08:00
|
|
|
created() {
|
2021-10-16 14:48:55 +08:00
|
|
|
|
2021-10-15 20:33:08 +08:00
|
|
|
},
|
2021-10-13 17:44:42 +08:00
|
|
|
data: () => ({
|
2021-10-16 14:48:55 +08:00
|
|
|
|
2021-10-15 20:33:08 +08:00
|
|
|
}),
|
|
|
|
|
methods: {
|
2021-10-16 14:48:55 +08:00
|
|
|
|
2021-10-15 20:33:08 +08:00
|
|
|
},
|
2021-10-13 17:44:42 +08:00
|
|
|
};
|
|
|
|
|
</script>
|