feat(projects): Add route meta parameter:fixedQuery

This commit is contained in:
Azir-11
2024-03-10 05:19:21 +08:00
parent 7a2f54be8b
commit 874aaca5bb
3 changed files with 22 additions and 2 deletions

View File

@ -59,5 +59,7 @@ declare module 'vue-router' {
multiTab?: boolean;
/** If set, the route will be fixed in tabs, and the value is the order of fixed tabs */
fixedIndexInTab?: number;
/** Fixed query parameters that are automatically carried when entering the route */
fixedQuery?: Record<string, string>;
}
}