fix(projects): The matched value of TabRoute should be optional
This commit is contained in:
parent
5d75ca924e
commit
e6fed1fdb5
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