Merge pull request #316 from Azir-11/main
fix(projects): The matched value of TabRoute should be optional
This commit is contained in:
commit
114c835921
4
src/typings/app.d.ts
vendored
4
src/typings/app.d.ts
vendored
@ -170,8 +170,8 @@ declare namespace App {
|
||||
};
|
||||
|
||||
/** Tab route */
|
||||
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta' | 'matched'> &
|
||||
Partial<Pick<RouteLocationNormalizedLoaded, 'fullPath' | 'query'>>;
|
||||
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta'> &
|
||||
Partial<Pick<RouteLocationNormalizedLoaded, 'fullPath' | 'query' | 'matched'>>;
|
||||
|
||||
/** The global tab */
|
||||
type Tab = {
|
||||
|
Loading…
Reference in New Issue
Block a user