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 */
|
/** Tab route */
|
||||||
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta' | 'matched'> &
|
type TabRoute = Pick<RouteLocationNormalizedLoaded, 'name' | 'path' | 'meta'> &
|
||||||
Partial<Pick<RouteLocationNormalizedLoaded, 'fullPath' | 'query'>>;
|
Partial<Pick<RouteLocationNormalizedLoaded, 'fullPath' | 'query' | 'matched'>>;
|
||||||
|
|
||||||
/** The global tab */
|
/** The global tab */
|
||||||
type Tab = {
|
type Tab = {
|
||||||
|
Loading…
Reference in New Issue
Block a user