25 lines
363 B
Vue
25 lines
363 B
Vue
<template>
|
|
<material-card color="primary" icon="mdi-account-outline">
|
|
<template #title>
|
|
菜单管理 — <small class="text-body-1">菜单可分配一个接口</small>
|
|
</template>
|
|
<ccTreeview></ccTreeview>
|
|
</material-card>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
<script>
|
|
export default {
|
|
created() {
|
|
|
|
},
|
|
data: () => ({
|
|
|
|
}),
|
|
methods: {
|
|
|
|
},
|
|
};
|
|
</script> |