| 1234567891011121314151617181920212223242526 |
- <template>
- <el-menu
- :default-active="this.$store.state.currentMenuItem"
- style="width: 220px; height: 100%"
- background-color="#141B29"
- text-color="#fff"
- active-text-color="#ffd04b"
- :router="true"
- >
- <el-sub-menu
- v-for="(item, index) in this.$store.state.menuData"
- :key="item"
- :index="`${index}`"
- >
- <template v-slot:title>
- <i :class="item.icon"></i>
- <span>{{ item.title }}</span>
- </template>
- <el-menu-item v-for="son in item.items" :index="son.path" :key="son">
- {{ son.name }}
- </el-menu-item>
- </el-sub-menu>
- </el-menu>
- </template>
- <script setup>
- </script>
|