vue3 菜单路由切换,页面空白没更新

vue3 菜单路由切换,页面空白没更新

解决:需要给router-view加一个key标识。

import { useRoute } from "vue-router";

const router = useRoute();
const routeKey = computed(() => router.path + Math.random());

你可能感兴趣的:(vue.js,前端,javascript)