PathParams,
comparePathParserScore,
PathParserOptions,
+ PathParserOptionsPublic,
} from './pathParserRanker'
import { warn } from 'vue'
// normalized ordered array of matchers
const matchers: RouteRecordMatcher[] = []
const matcherMap = new Map<RouteRecordName, RouteRecordMatcher>()
+ globalOptions = mergeOptions(
+ { strict: false, end: true, sensitive: false } as PathParserOptionsPublic,
+ globalOptions
+ )
function getRecordMatcher(name: RouteRecordName) {
return matcherMap.get(name)
return options
}
-export { PathParserOptionsPublic as PathParserOptions } from './pathParserRanker'
+export { PathParserOptionsPublic as PathParserOptions }