10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
import type { ComputedRef } from 'vue';
|
|
/**
|
|
* Composables for route paths
|
|
*
|
|
* 获取路由路径的组合函数
|
|
*
|
|
* @returns Computed reference to route paths / 路由路径的计算引用
|
|
*/
|
|
export declare const useRoutePaths: () => ComputedRef<string[]>;
|