Files
Yi.Framework/Yi.Vue/src/views/AdmMenu.vue
2021-10-18 18:46:11 +08:00

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>