UNPKG

@opentiny/tiny-toolkit-pro

Version:

TinyPro Vue:开箱即用、前后端分离的 Vue 后台管理模板

17 lines (15 loc) 455 B
import { useTabStore } from "@/store"; import { Router } from "vue-router"; export const setupTabsGuard = (router:Router) => { router.beforeEach((to, from, next) => { const tabStore = useTabStore(); if (tabStore.has(to.meta.locale ?? '')) { tabStore.set(to.meta.locale!); next(); return; } tabStore.add({name: to.meta.locale!, link: to.fullPath}); tabStore.set(to.meta.locale!); next(); }) }