| 12345678910111213141516171819 |
- <template>
- <a-breadcrumb class="breadcrumb">
- <a-breadcrumb-item><icon-apps /></a-breadcrumb-item>
- <a-breadcrumb-item>{{ $t('header.权限管理') }}</a-breadcrumb-item>
- <a-breadcrumb-item>{{ $t(`permission.bread_crumb.${current_label}`) }}</a-breadcrumb-item>
- </a-breadcrumb>
- </template>
- <script setup>
- const props = defineProps({
- current_label: String
- });
- </script>
- <style lang="css" scoped>
- .breadcrumb {
- margin-bottom: 16px;
- }
- </style>
|