UNPKG

@prefecthq/vue-compositions

Version:

A collection of reusable vue compositions.

4 lines (3 loc) 220 B
import { Ref } from 'vue'; export declare function useRouteParam(param: string, useFirstIfArray?: true): Ref<string>; export declare function useRouteParam(param: string, useFirstIfArray: false): Ref<string | string[]>;