fix(menu): need router props (#589)

This commit is contained in:
wū yāng 2023-08-15 19:27:14 +08:00 committed by GitHub
parent 6499532cad
commit 0c0ba082b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
</template> </template>
{{ item.title }} {{ item.title }}
</t-menu-item> </t-menu-item>
<t-menu-item v-else :name="item.path" :value="getPath(item)" :to="item.path"> <t-menu-item v-else :name="item.path" :value="getPath(item)" :to="item.path" :router="router">
<template #icon> <template #icon>
<component :is="menuIcon(item)" class="t-icon"></component> <component :is="menuIcon(item)" class="t-icon"></component>
</template> </template>
@ -27,12 +27,15 @@
<script setup lang="tsx"> <script setup lang="tsx">
import type { PropType } from 'vue'; import type { PropType } from 'vue';
import { computed } from 'vue'; import { computed } from 'vue';
import { useRouter } from 'vue-router';
import { getActive } from '@/router'; import { getActive } from '@/router';
import type { MenuRoute } from '@/types/interface'; import type { MenuRoute } from '@/types/interface';
type ListItemType = MenuRoute & { icon?: string }; type ListItemType = MenuRoute & { icon?: string };
const router = useRouter();
const props = defineProps({ const props = defineProps({
navData: { navData: {
type: Array as PropType<MenuRoute[]>, type: Array as PropType<MenuRoute[]>,